| 1 |
<?php |
| 2 |
/** |
| 3 |
* Element Definition |
| 4 |
* |
| 5 |
* @package wp-commerce7 |
| 6 |
* @author Michael Bourne |
| 7 |
* @license GPL3 |
| 8 |
* @link https://ursa6.com |
| 9 |
* @since 1.0.0 |
| 10 |
*/ |
| 11 |
|
| 12 |
class C7WP_CsElement { |
| 13 |
|
| 14 |
public function ui() { |
| 15 |
return array( |
| 16 |
'title' => __( 'Commerce7', 'wp-commerce7' ), |
| 17 |
'icon_group' => 'commerce7', |
| 18 |
'icon_id' => 'Layer_1', |
| 19 |
); |
| 20 |
} |
| 21 |
|
| 22 |
public function register_shortcode() { |
| 23 |
return false; |
| 24 |
} |
| 25 |
|
| 26 |
/** |
| 27 |
* Shortcode name for the element |
| 28 |
* |
| 29 |
* @var string |
| 30 |
*/ |
| 31 |
public $shortcode_name = 'c7wp'; |
| 32 |
|
| 33 |
} |
| 34 |
|