CustomField.php
18 lines
| 1 | <?php |
| 2 | |
| 3 | namespace AC\Admin\HelpTab; |
| 4 | |
| 5 | use AC\Admin\HelpTab; |
| 6 | use AC\View; |
| 7 | |
| 8 | class CustomField extends HelpTab { |
| 9 | |
| 10 | public function __construct() { |
| 11 | parent::__construct( __( "Custom Fields", 'codepress-admin-columns' ) ); |
| 12 | } |
| 13 | |
| 14 | public function get_content() { |
| 15 | return ( new View() )->set_template( 'admin/help-tab/custom-fields' )->render(); |
| 16 | } |
| 17 | |
| 18 | } |