PluginProbe
Commerce7 for WordPress / trunk
Commerce7 for WordPress vtrunk
1.8.1 1.8.0 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.1.0 1.1.1 1.1.3 1.2.0 1.2.1 1.2.2 1.2.3 1.2.5 1.2.6 1.3.0 1.3.1 1.3.2 1.3.4 1.3.5 1.4.0 1.4.1 All 37 releases
wp-commerce7 / includes / themeco / cornerstone / definition.php

definition.php in Commerce7 for WordPress trunk, at includes/themeco/cornerstone/definition.php

34 lines 510 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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