bulk-editing.php
5 months ago
conditional-format.php
5 months ago
custom-field.php
5 months ago
export-disabled.php
5 months ago
export.php
5 months ago
filtering.php
5 months ago
inline-editing.php
5 months ago
serialized.php
5 months ago
smart-filtering.php
5 months ago
sorting-include-empty.php
5 months ago
sorting.php
5 months ago
inline-editing.php
47 lines
| 1 | <?php |
| 2 | |
| 3 | use AC\Type\Url\Documentation; |
| 4 | |
| 5 | ?> |
| 6 | <template id="doc-inline-edit"> |
| 7 | <h3> |
| 8 | <?= __('Inline Editing', 'codepress-admin-columns') ?> |
| 9 | </h3> |
| 10 | <p> |
| 11 | <?= sprintf( |
| 12 | __( |
| 13 | 'With Inline Edit, you can update your content quick and easy, without having to open each %s one at the time.', |
| 14 | 'codepress-admin-columns' |
| 15 | ), |
| 16 | sprintf('"%s"', $this->object_type) |
| 17 | ); ?> |
| 18 | </p> |
| 19 | <p> |
| 20 | 1. <?= __( |
| 21 | 'To start inline editing, toggle the “Inline Edit” button on top of the list table.', |
| 22 | 'codepress-admin-columns' |
| 23 | ); ?> |
| 24 | </p> |
| 25 | <img width="107" src="<?= esc_url( |
| 26 | $this->url . '/assets/images/tooltip/inline-edit-toggle.png' |
| 27 | ) ?>" alt="Toggle Inline Edit" style="border:1px solid #ddd;"> |
| 28 | <p> |
| 29 | 2. <?= __('Click on the pencil icon to start editing the value of a field.', 'codepress-admin-columns'); ?> |
| 30 | </p> |
| 31 | <img src="<?= esc_url( |
| 32 | $this->url . '/assets/images/tooltip/inline-edit.png' |
| 33 | ) ?>" alt="Usage of Inline Edit" width="213" style="border:1px solid #ddd;"> |
| 34 | <p> |
| 35 | 3. <?= __( |
| 36 | 'It is possible to undo and redo all changes made with Inline Editing, so using it is without risk.', |
| 37 | 'codepress-admin-columns' |
| 38 | ); ?> |
| 39 | </p> |
| 40 | <p> |
| 41 | <a href="<?= esc_url( |
| 42 | Documentation::create_with_path(Documentation::ARTICLE_INLINE_EDITING)->get_url() |
| 43 | ); ?>" target="_blank"> |
| 44 | <?= __('Learn more »', 'codepress-admin-columns'); ?> |
| 45 | </a> |
| 46 | </p> |
| 47 | </template> |