ad-list
5 months ago
conditions
5 months ago
notices
1 year ago
upgrades
1 year ago
ad-conditions-string-operators.php
3 months ago
checks.php
3 months ago
index.php
7 years ago
modal.php
3 months ago
overview-addons-line.php
5 months ago
overview-notice-row.php
1 year ago
overview-widget.php
1 year ago
placement-form.php
1 year ago
placement-injection-top.php
1 year ago
placement-types.php
3 years ago
placements-ad-label.php
1 year ago
placements-inline-css.php
1 year ago
placements-item.php
1 year ago
post-list-filter-dropdown.php
5 months ago
setting-license.php
1 year ago
support-callout.php
1 year ago
overview-widget.php
17 lines
| 1 | <div id="<?php echo esc_attr( $id ); ?>" class="postbox position-<?php echo esc_attr( $position ); ?>"> |
| 2 | <?php if ( ! empty( $title ) ) : ?> |
| 3 | <h2> |
| 4 | <?php |
| 5 | // phpcs:ignore |
| 6 | echo $title; |
| 7 | ?> |
| 8 | </h2> |
| 9 | <?php endif; ?> |
| 10 | <div class="inside"> |
| 11 | <?php |
| 12 | // phpcs:ignore |
| 13 | echo $content; |
| 14 | ?> |
| 15 | </div> |
| 16 | </div> |
| 17 |