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
InlineEditing.php
26 lines
| 1 | <?php |
| 2 | |
| 3 | namespace AC\Settings\Column\Pro; |
| 4 | |
| 5 | use AC\Settings; |
| 6 | use AC\View; |
| 7 | |
| 8 | class InlineEditing extends Settings\Column\Pro { |
| 9 | |
| 10 | protected function get_label() { |
| 11 | return __( 'Inline Editing', 'codepress-admin-columns' ); |
| 12 | } |
| 13 | |
| 14 | protected function get_instructions() { |
| 15 | $view = new View( [ |
| 16 | 'object_type' => $this->column->get_list_screen()->get_singular_label(), |
| 17 | ] ); |
| 18 | |
| 19 | return $view->set_template( 'tooltip/inline-editing' ); |
| 20 | } |
| 21 | |
| 22 | protected function define_options() { |
| 23 | return [ 'inline-edit' ]; |
| 24 | } |
| 25 | |
| 26 | } |