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