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
export.php
36 lines
| 1 | <?php |
| 2 | |
| 3 | use AC\Type\Url\Documentation; |
| 4 | |
| 5 | ?> |
| 6 | <template id="doc-export"> |
| 7 | <h3> |
| 8 | <?= __('Export', 'codepress-admin-columns'); ?> |
| 9 | </h3> |
| 10 | <p> |
| 11 | <?= __( |
| 12 | 'Export for Admin Columns Pro, allows you to export the contents of your columns to CSV.', |
| 13 | 'codepress-admin-columns' |
| 14 | ); ?> |
| 15 | </p> |
| 16 | <p> |
| 17 | 1. <?= __('Click the export button and all items will be exported to CSV.', 'codepress-admin-columns'); ?> |
| 18 | </p> |
| 19 | <img src="<?= esc_url($this->url . '/assets/images/tooltip/export.png') ?>" alt="Export" width="213"> |
| 20 | <p> |
| 21 | 2. <?= __('The result is a CSV file.', 'codepress-admin-columns'); ?> |
| 22 | </p> |
| 23 | <img src="<?= esc_url( |
| 24 | $this->url . '/assets/images/tooltip/export-csv.png' |
| 25 | ) ?>" alt="Export" style="border:1px solid #ddd;"> |
| 26 | <p> |
| 27 | <?= __('You can use filters to segment your list before exporting.', 'codepress-admin-columns'); ?> |
| 28 | </p> |
| 29 | <p> |
| 30 | <a href="<?= esc_url( |
| 31 | Documentation::create_with_path(Documentation::ARTICLE_EXPORT)->get_url() |
| 32 | ) ?>" target="_blank"> |
| 33 | <?= __('Learn more »', 'codepress-admin-columns'); ?> |
| 34 | </a> |
| 35 | </p> |
| 36 | </template> |