Introduction.php
27 lines
| 1 | <?php |
| 2 | |
| 3 | if ( ! defined( 'ABSPATH' ) ) { |
| 4 | exit; |
| 5 | } |
| 6 | |
| 7 | class AC_Admin_Help_Introduction extends AC_Admin_Help { |
| 8 | |
| 9 | public function get_title() { |
| 10 | return __( "Overview", 'codepress-admin-columns' ); |
| 11 | } |
| 12 | |
| 13 | public function get_content() { |
| 14 | ob_start(); |
| 15 | ?> |
| 16 | |
| 17 | <p> |
| 18 | <?php _e( "This plugin is for adding and removing additional columns to the administration screens for post(types), pages, media library, comments, links and users. Change the column's label and reorder them.", 'codepress-admin-columns' ); ?> |
| 19 | </p> |
| 20 | |
| 21 | <?php |
| 22 | |
| 23 | return ob_get_clean(); |
| 24 | } |
| 25 | |
| 26 | } |
| 27 |