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
name.php
22 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Render the group name 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 | <div class="advads-table-name"> |
| 14 | <a class="row-title" href="#modal-group-edit-<?php echo esc_attr( $group->get_id() ); ?>"><?php echo esc_html( $group->get_name() ); ?></a> |
| 15 | </div> |
| 16 | <?php if ( $this->type_error ) : ?> |
| 17 | <p class="advads-notice-inline advads-error"> |
| 18 | <?php echo esc_html( $this->type_error ); ?> |
| 19 | </p> |
| 20 | <?php |
| 21 | endif; |
| 22 |