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