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
serialized.php
42 lines
| 1 | <template id="doc-serialized"> |
| 2 | <h3> |
| 3 | <?= __('Serialized Array Keys', 'codepress-admin-columns'); ?> |
| 4 | </h3> |
| 5 | <p> |
| 6 | <?= __('Fill in the key(s) of the nested element that you want to display.', 'codepress-admin-columns'); ?> |
| 7 | </p> |
| 8 | <h4><?= __('Example') ?></h4> |
| 9 | <p> |
| 10 | <img src="<?= esc_url( |
| 11 | $this->url . '/assets/images/tooltip/serialized-array.png' |
| 12 | ) ?>" alt="Serialized Array" style="box-sizing: border-box; border:1px solid #ddd;padding: 8px 10px;max-width: 100%;margin: 5px 0;"> |
| 13 | </p> |
| 14 | <p> |
| 15 | <?= sprintf( |
| 16 | __('Fill in %s', 'codepress-admin-columns'), |
| 17 | sprintf('<span class="tooltip-serialized-array-input">%s</span>', 'sizes.medium') |
| 18 | ); ?> |
| 19 | </p> |
| 20 | <p> |
| 21 | <?= sprintf( |
| 22 | __('Displayed value is %s', 'codepress-admin-columns'), |
| 23 | sprintf('<span class="tooltip-serialized-array-result">%s</span>', 'image-200.jpg') |
| 24 | ); ?> |
| 25 | </p> |
| 26 | <style> |
| 27 | .tooltip-serialized-array-input { |
| 28 | border: 1px solid #ccc; |
| 29 | padding: 4px 10px; |
| 30 | border-radius: 4px; |
| 31 | margin-left: 4px; |
| 32 | font-family: monospace; |
| 33 | color: #4b4b4b; |
| 34 | } |
| 35 | |
| 36 | .tooltip-serialized-array-result { |
| 37 | font-weight: bold; |
| 38 | font-family: monospace; |
| 39 | color: #4b4b4b; |
| 40 | } |
| 41 | </style> |
| 42 | </template> |