Server IP : 162.0.217.223 / Your IP : 216.73.216.168 Web Server : LiteSpeed System : Linux premium269.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : mypckeys ( 1539) PHP Version : 8.1.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/mypckeys/backup/msckey.com/wp-content/plugins/wp-table-builder/inc/admin/base/ |
Upload File : |
<?php namespace WP_Table_Builder\Inc\Admin\Base; use WP_Table_Builder\Inc\Core\Init as Init; use WP_Table_Builder as NS; // If this file is called directly, abort. if ( ! defined( 'WPINC' ) ) { die; } /** * WP Table Builder Base Object. * * @since 1.1.2 * @abstract */ abstract class Base_Object { /** * Get element name. * * Retrieve the element name. * * @since 1.1.2 * @access public * @abstract * * @return string The name. */ abstract public function get_name(); /** * Get unique name. * * Some classes need to use unique names, this method allows you to create * them. By default it returns the regular name. * * @since 1.1.2 * @access public * * @return string Unique name. */ public function get_unique_name() { return $this->get_name(); } /** * Get element title. * * Retrieve the element title. * * @since 1.1.2 * @access public * * @return string element title. */ public function get_title() { return ''; } }