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