BulkEditing.php
5 years ago
Export.php
5 years ago
InlineEditing.php
5 years ago
SmartFiltering.php
5 years ago
Sorting.php
5 years ago
BulkEditing.php
22 lines
| 1 | <?php |
| 2 | |
| 3 | namespace AC\Settings\Column\Pro; |
| 4 | |
| 5 | use AC\Settings; |
| 6 | use AC\View; |
| 7 | |
| 8 | class BulkEditing extends Settings\Column\Pro { |
| 9 | |
| 10 | protected function get_label() { |
| 11 | return __( 'Bulk Editing', 'codepress-admin-columns' ); |
| 12 | } |
| 13 | |
| 14 | protected function get_instructions() { |
| 15 | return ( new View() )->set_template( 'tooltip/bulk-editing' ); |
| 16 | } |
| 17 | |
| 18 | protected function define_options() { |
| 19 | return [ 'bulk-edit' ]; |
| 20 | } |
| 21 | |
| 22 | } |