| 1 |
<?php |
| 2 |
|
| 3 |
/** |
| 4 |
* Author Name: Liton Arefin |
| 5 |
* Author URL: https://jeweltheme.com |
| 6 |
* Date: 9/8/19 |
| 7 |
*/ |
| 8 |
|
| 9 |
namespace MasterAddons\Inc\Admin\Templates\Includes\Documents; |
| 10 |
|
| 11 |
if (!defined('ABSPATH')) exit; // Exit if accessed directly |
| 12 |
|
| 13 |
class Section extends Base |
| 14 |
{ |
| 15 |
|
| 16 |
public function get_name() |
| 17 |
{ |
| 18 |
return 'master_page'; |
| 19 |
} |
| 20 |
|
| 21 |
public static function get_title() |
| 22 |
{ |
| 23 |
return __('Section', 'master-addons' ); |
| 24 |
} |
| 25 |
|
| 26 |
public function has_conditions() |
| 27 |
{ |
| 28 |
return false; |
| 29 |
} |
| 30 |
} |
| 31 |
|