details.php
3 months ago
list-row-loop-none.php
3 months ago
list-row-loop.php
1 month ago
name.php
3 months ago
type.php
3 months ago
usage.php
3 months ago
details.php
31 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Render the group details column content in the group table. |
| 4 | * |
| 5 | * @package AdvancedAds |
| 6 | * @author Advanced Ads <info@wpadvancedads.com> |
| 7 | * @since 1.48.0 |
| 8 | * |
| 9 | * @var Group $group Group instance. |
| 10 | */ |
| 11 | |
| 12 | ?> |
| 13 | <ul> |
| 14 | <li> |
| 15 | <?php |
| 16 | /* |
| 17 | * translators: %s is the ID of an ad group |
| 18 | */ |
| 19 | printf( esc_attr__( 'ID: %s', 'advanced-ads' ), absint( $group->get_id() ) ); |
| 20 | ?> |
| 21 | </li> |
| 22 | <li> |
| 23 | <strong> |
| 24 | <?php |
| 25 | /* translators: %s is the name of a group type */ |
| 26 | printf( esc_html__( 'Type: %s', 'advanced-ads' ), esc_html( $group->get_type_object()->get_title() ) ); |
| 27 | ?> |
| 28 | </strong> |
| 29 | </li> |
| 30 | </ul> |
| 31 |