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