| 1 |
<?php |
| 2 |
if ( ! defined( 'WPINC' ) ) { |
| 3 |
die; |
| 4 |
} |
| 5 |
|
| 6 |
/** |
| 7 |
* Provide a admin area view for the plugin |
| 8 |
* |
| 9 |
* This file is used to markup the admin-facing aspects of the plugin. |
| 10 |
* |
| 11 |
* @link http://codeboxr.com |
| 12 |
* @since 1.0.0 |
| 13 |
* |
| 14 |
* @package cbxgooglemap |
| 15 |
* @subpackage cbxgooglemap/templates/admin |
| 16 |
*/ |
| 17 |
|
| 18 |
echo '<div class="cbxshortcode-wrap">'; |
| 19 |
echo '<span data-clipboard-text=\'[cbxgooglemap id="' . absint( $post_id ) . '"]\' title="' . esc_html__( 'Click to clipboard', 'cbxgooglemap' ) . '" id="cbxgooglemapshortcode-' . absint( $post_id ) . '" class="cbxshortcode cbxshortcode-edit cbxshortcode-' . absint( $post_id ) . '">[cbxgooglemap id="' . absint( $post_id ) . '"]</span>'; |
| 20 |
echo '<span class="cbxballon_ctp_btn cbxballon_ctp" aria-label="' . esc_html__( 'Click to copy', 'cbxgooglemap' ) . '" data-balloon-pos="up"><i></i></span>'; |
| 21 |
echo '</div>'; |