help-tab
5 years ago
page
5 years ago
edit-actions.php
5 years ago
edit-addon.php
5 years ago
edit-column.php
5 years ago
edit-columns.php
5 years ago
edit-menu.php
5 years ago
edit-submenu.php
5 years ago
edit-tabmenu.php
5 years ago
loading-message.php
5 years ago
menu.php
5 years ago
mini-tooltip.php
5 years ago
modal-pro.php
5 years ago
side-banner.php
5 years ago
side-feedback.php
5 years ago
side-support.php
5 years ago
table.php
5 years ago
tooltip-body.php
5 years ago
tooltip-label.php
5 years ago
wrap.php
5 years ago
edit-addon.php
22 lines
| 1 | <?php |
| 2 | |
| 3 | if ( ! defined( 'ABSPATH' ) ) { |
| 4 | exit; |
| 5 | } |
| 6 | |
| 7 | ?> |
| 8 | |
| 9 | <li class="ac-addon -<?php echo esc_attr( $this->slug ); ?>" data-slug="<?php echo $this->slug; ?>"> |
| 10 | <div class="addon-header"> |
| 11 | <div class="inner"> |
| 12 | <img src="<?php echo esc_url( $this->logo ); ?>"/> |
| 13 | </div> |
| 14 | </div> |
| 15 | <div class="addon-content"> |
| 16 | <h3><?php echo esc_html( $this->title ); ?></h3> |
| 17 | <p><?php echo esc_html( $this->description ); ?></p> |
| 18 | </div> |
| 19 | <div class="addon-actions"> |
| 20 | <?php echo $this->actions; ?> |
| 21 | </div> |
| 22 | </li> |