bulk-editing.php
4 days ago
conditional-format.php
4 days ago
custom-field.php
4 days ago
export-disabled.php
4 days ago
export.php
4 days ago
filtering.php
4 days ago
inline-editing.php
4 days ago
metrics.php
4 days ago
serialized.php
4 days ago
smart-filtering.php
4 days ago
sorting-include-empty.php
4 days ago
sorting.php
4 days ago
bulk-editing.php
43 lines
| 1 | <?php |
| 2 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | use AC\Type\Url\Documentation; |
| 6 | |
| 7 | ?> |
| 8 | <template id="doc-bulk-editing"> |
| 9 | <h3> |
| 10 | <?= __('Bulk Editing', 'codepress-admin-columns'); ?> |
| 11 | </h3> |
| 12 | <p> |
| 13 | <?= __('Bulk Edit allows you to update multiple values at once.', 'codepress-admin-columns'); ?> |
| 14 | </p> |
| 15 | <p> |
| 16 | 1. <?= __( |
| 17 | 'Select more than one row from the list table to show the bulk edit buttons.', |
| 18 | 'codepress-admin-columns' |
| 19 | ); ?> |
| 20 | </p> |
| 21 | <img src="<?= esc_url( |
| 22 | $this->url . '/assets/images/tooltip/bulk-edit.png' |
| 23 | ) ?>" alt="Bulk Edit" style="border:1px solid #ddd;"> |
| 24 | <p> |
| 25 | 2. <?= sprintf( |
| 26 | __( |
| 27 | 'Clicking the %s button will display a popup that allows you to add or change the current value of all selected items.', |
| 28 | 'codepress-admin-columns' |
| 29 | ), |
| 30 | sprintf('<strong>%s</strong>', __('Bulk Edit', 'codepress-admin-columns')) |
| 31 | ); ?> |
| 32 | </p> |
| 33 | <img src="<?= esc_url( |
| 34 | $this->url . '/assets/images/tooltip/bulk-edit-author.png' |
| 35 | ) ?>" alt="Bulk Edit" style="border:1px solid #ddd;"> |
| 36 | <p> |
| 37 | <a href="<?= esc_url( |
| 38 | Documentation::create_with_path(Documentation::ARTICLE_BULK_EDITING)->get_url() |
| 39 | ) ?>" target="_blank"> |
| 40 | <?= __('Learn more »', 'codepress-admin-columns') ?> |
| 41 | </a> |
| 42 | </p> |
| 43 | </template> |