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
export-disabled.php
28 lines
| 1 | <?php |
| 2 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | use AC\Type\Url\Documentation; |
| 6 | |
| 7 | ?> |
| 8 | <template id="doc-export-unavailable"> |
| 9 | <h3> |
| 10 | <?= __('Export Unavailable', 'codepress-admin-columns'); ?> |
| 11 | </h3> |
| 12 | <p> |
| 13 | <?= __('Unfortunately not every column can be exported.', 'codepress-admin-columns'); ?> |
| 14 | </p> |
| 15 | <p> |
| 16 | <?= __( |
| 17 | 'Third-party columns and some custom columns cannot be exported unless there is build-in support for that specific column.', |
| 18 | 'codepress-admin-columns' |
| 19 | ); ?> |
| 20 | </p> |
| 21 | <p> |
| 22 | <a href="<?= esc_url( |
| 23 | Documentation::create_with_path(Documentation::ARTICLE_EXPORT)->get_url() |
| 24 | ); ?>" target="_blank"> |
| 25 | <?= __('Learn more »', 'codepress-admin-columns'); ?> |
| 26 | </a> |
| 27 | </p> |
| 28 | </template> |