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
sorting-include-empty.php
23 lines
| 1 | <?php |
| 2 | |
| 3 | use AC\Type\Url\Documentation; |
| 4 | |
| 5 | $url = (new Documentation(Documentation::ARTICLE_SHOW_ALL_SORTING_RESULTS))->get_url(); |
| 6 | |
| 7 | ?> |
| 8 | <template id="doc-sorting-empty"> |
| 9 | <h3> |
| 10 | <?= __('Sorting', 'codepress-admin-columns'); ?> |
| 11 | </h3> |
| 12 | <p> |
| 13 | <?= __("By enabling this setting the sorting results will include empty values.", 'codepress-admin-columns') ?> |
| 14 | </p> |
| 15 | <img style="border:1px solid #ddd;" width="260" src="<?= esc_url( |
| 16 | $this->url . '/assets/images/tooltip/sorting-include-empty.png' |
| 17 | ) ?>" alt="Include empty values"> |
| 18 | <p> |
| 19 | <a href="<?= esc_url($url) ?>" target="_blank"> |
| 20 | <?= __('Read more »', 'codepress-admin-columns') ?> |
| 21 | </a> |
| 22 | </p> |
| 23 | </template> |