ACC SHELL
<?php
$coffee_shortcodes['column'] = array(
'no_preview' => true,
'params' => array(
'column' => array(
'type' => 'select',
'std' => 'one-one',
'label' => __('Column', 'coffee'),
'desc' => __('Pick column size.', 'coffee'),
'options' => array(
'one-one' => 'Full Width',
'one-half' => 'One Half',
'one-third' => 'One Third',
'two-third' => 'Two Thirds',
'three-fourth' => 'Three Fourths',
'one-fourth' => 'One Fourth'
)
),
'last_column' => array(
'std' => 'false',
'type' => 'select',
'options' => array(
'false' => 'False',
'true' => 'True'
),
'label' => __('Last Column', 'coffee'),
'desc' => __('If this is last column in row select true. Full width column don\'t need that.', 'coffee')
),
'content' => array(
'std' => '',
'type' => 'textarea',
'label' => __('Column Content', 'coffee'),
'desc' => __('Type content here, You can add more content later on in editor.', 'coffee'),
),
),
'shortcode' => '[coffee_shortcode_column column="{{column}}" last_column="{{last_column}}"] <p> {{content}} </p> [/coffee_shortcode_column]',
'popup_title' => __('Insert Column', 'coffee')
);
$coffee_shortcodes['feature'] = array(
'no_preview' => true,
'params' => array(
'column' => array(
'type' => 'select',
'std' => 'one-one',
'label' => __('Column', 'coffee'),
'desc' => __('Pick column size.', 'coffee'),
'options' => array(
'one-one' => 'Full Width',
'one-half' => 'One Half',
'one-third' => 'One Third',
'two-third' => 'Two Thirds',
'three-fourth' => 'Three Fourths',
'one-fourth' => 'One Fourth'
)
),
'last_column' => array(
'std' => 'false',
'type' => 'select',
'options' => array(
'false' => 'False',
'true' => 'True'
),
'label' => __('Last Column', 'coffee'),
'desc' => __('If this is last column in row select true. Full width column don\'t need that.', 'coffee')
),
'title' => array(
'std' => 'Sample Title',
'type' => 'text',
'label' => __('Feature Title', 'coffee'),
'desc' => __('Add the feature title.', 'coffee')
),
'icon' => array(
'type' => 'select-icons',
'std' => 'icon-glass',
'label' => __('Feature Icon', 'coffee'),
'desc' => __('Pick icon for feature.', 'coffee'),
),
'colour' => array(
'type' => 'select',
'std' => 'turquoise',
'label' => __('Feature Colour', 'coffee'),
'desc' => __('Select the colour.', 'coffee'),
'options' => array(
'turquoise' => 'Turquoise',
'emerald' => 'Emerald',
'peter-river' => 'Peter-river',
'amethyst' => 'Amethyst',
'wet-asphalt' => 'Wet-asphalt',
'green-sea' => 'Green-sea',
'nephritis' => 'Nephritis',
'belize-hole' => 'Belize-hole',
'wisteria' => 'Wisteria',
'midnight-blue' => 'Midnight-blue',
'sun-flower' => 'Sun-flower',
'carrot' => 'Carrot',
'alizarin' => 'Alizarin',
'clouds' => 'Clouds',
'concrete' => 'Concrete',
'orange' => 'Orange',
'pumpkin' => 'Pumpkin',
'pomegranate' => 'Pomegranate',
'silver' => 'Silver',
'asbestos' => 'Asbestos'
)
),
'content' => array(
'std' => 'Feature Content',
'type' => 'textarea',
'label' => __('Feature Content', 'coffee'),
'desc' => __('Add the feature content.', 'coffee'),
),
),
'shortcode' => '[coffee_shortcode_feature column="{{column}}" last_column="{{last_column}}" title="{{title}}" icon="{{icon}}" colour="{{colour}}"] <p> {{content}} </p> [/coffee_shortcode_feature]',
'popup_title' => __('Insert Feature', 'coffee')
);
$coffee_shortcodes['button'] = array(
'no_preview' => true,
'params' => array(
'title' => array(
'std' => 'Sample Title',
'type' => 'text',
'label' => __('Button Title', 'coffee'),
'desc' => __('Add the button title, shown on longer hover over button.', 'coffee')
),
'content' => array(
'std' => 'Button Text',
'type' => 'text',
'label' => __('Button Text', 'coffee'),
'desc' => __('Add the button text', 'coffee'),
),
'link' => array(
'std' => '#',
'type' => 'text',
'label' => __('Button URL', 'coffee'),
'desc' => __('Add the button url.', 'coffee')
),
'target' => array(
'type' => 'select',
'label' => __('Button Target', 'coffee'),
'desc' => __('_self = open in same window. _blank = open in new window.', 'coffee'),
'options' => array(
'_self' => '_self',
'_blank' => '_blank'
)
),
'icon' => array(
'type' => 'select-icons',
'std' => 'icon-glass',
'label' => __('Button Icon', 'coffee'),
'desc' => __('Pick icon for button.', 'coffee'),
),
'colour' => array(
'type' => 'select',
'std' => 'turquoise',
'label' => __('Button Colour', 'coffee'),
'desc' => __('Select the button colour.', 'coffee'),
'options' => array(
'turquoise' => 'Turquoise',
'emerald' => 'Emerald',
'peter-river' => 'Peter-river',
'amethyst' => 'Amethyst',
'wet-asphalt' => 'Wet-asphalt',
'green-sea' => 'Green-sea',
'nephritis' => 'Nephritis',
'belize-hole' => 'Belize-hole',
'wisteria' => 'Wisteria',
'midnight-blue' => 'Midnight-blue',
'sun-flower' => 'Sun-flower',
'carrot' => 'Carrot',
'alizarin' => 'Alizarin',
'clouds' => 'Clouds',
'concrete' => 'Concrete',
'orange' => 'Orange',
'pumpkin' => 'Pumpkin',
'pomegranate' => 'Pomegranate',
'silver' => 'Silver',
'asbestos' => 'Asbestos'
)
)
),
'shortcode' => '[coffee_shortcode_button title="{{title}}" link="{{link}}" target="{{target}}" icon="{{icon}}" colour="{{colour}}"] <p> {{content}} </p> [/coffee_shortcode_button]',
'popup_title' => __('Insert Button', 'coffee')
);
$coffee_shortcodes['bar'] = array(
'no_preview' => true,
'params' => array(
'title' => array(
'std' => 'Sample Title',
'type' => 'text',
'label' => __('Bar Title', 'coffee'),
'desc' => __('Add the bar title.', 'coffee')
),
'percentage' => array(
'std' => '50',
'type' => 'text',
'label' => __('Bar Percentage', 'coffee'),
'desc' => __('Type here bar percentage from 1-100 range.', 'coffee')
),
'colour' => array(
'type' => 'select',
'std' => 'turquoise',
'label' => __('Bar Colour', 'coffee'),
'desc' => __('Select the colour.', 'coffee'),
'options' => array(
'turquoise' => 'Turquoise',
'emerald' => 'Emerald',
'peter-river' => 'Peter-river',
'amethyst' => 'Amethyst',
'wet-asphalt' => 'Wet-asphalt',
'green-sea' => 'Green-sea',
'nephritis' => 'Nephritis',
'belize-hole' => 'Belize-hole',
'wisteria' => 'Wisteria',
'midnight-blue' => 'Midnight-blue',
'sun-flower' => 'Sun-flower',
'carrot' => 'Carrot',
'alizarin' => 'Alizarin',
'clouds' => 'Clouds',
'concrete' => 'Concrete',
'orange' => 'Orange',
'pumpkin' => 'Pumpkin',
'pomegranate' => 'Pomegranate',
'silver' => 'Silver',
'asbestos' => 'Asbestos'
)
),
),
'shortcode' => '[coffee_shortcode_bar title="{{title}}" percentage="{{percentage}}" colour="{{colour}}" ][/coffee_shortcode_bar]',
'popup_title' => __('Insert Bar', 'coffee')
);
$coffee_shortcodes['pricing'] = array(
'no_preview' => true,
'params' => array(
'column' => array(
'type' => 'select',
'std' => 'one-one',
'label' => __('Column', 'coffee'),
'desc' => __('Select Column.', 'coffee'),
'options' => array(
'one-one' => 'Full Width',
'one-half' => 'One Half',
'one-third' => 'One Third',
'two-third' => 'Two Thirds',
'three-fourth' => 'Three Fourths',
'one-fourth' => 'One Fourth'
)
),
'last_column' => array(
'std' => 'false',
'type' => 'select',
'options' => array(
'false' => 'False',
'true' => 'True'
),
'label' => __('Last Column', 'coffee'),
'desc' => __('If this is last column in row select true. Full width column don\'t need that.', 'coffee')
),
'featured' => array(
'std' => 'clear',
'type' => 'select',
'options' => array(
'clear' => 'Clear',
'false' => 'False',
'true' => 'True'
),
'label' => __('Featuring Price Table', 'coffee'),
'desc' => __('Clear - no featured price tables in row. False - Featured tables in this row but not this one. True - This is featured table in row. ', 'coffee')
),
'title' => array(
'std' => 'Sample Title',
'type' => 'text',
'label' => __('Pricing Title', 'coffee'),
'desc' => __('Add the pricing title.', 'coffee')
),
'price' => array(
'std' => '50$',
'type' => 'text',
'label' => __('Price', 'coffee'),
'desc' => __('Type down price.', 'coffee')
),
'price_per' => array(
'std' => 'Per Month',
'type' => 'text',
'label' => __('Price Per', 'coffee'),
'desc' => __('Type price per time.', 'coffee')
),
'colour' => array(
'type' => 'select',
'std' => 'turquoise',
'label' => __('Feature Colour', 'coffee'),
'desc' => __('Select the colour.', 'coffee'),
'options' => array(
'turquoise' => 'Turquoise',
'emerald' => 'Emerald',
'peter-river' => 'Peter-river',
'amethyst' => 'Amethyst',
'wet-asphalt' => 'Wet-asphalt',
'green-sea' => 'Green-sea',
'nephritis' => 'Nephritis',
'belize-hole' => 'Belize-hole',
'wisteria' => 'Wisteria',
'midnight-blue' => 'Midnight-blue',
'sun-flower' => 'Sun-flower',
'carrot' => 'Carrot',
'alizarin' => 'Alizarin',
'clouds' => 'Clouds',
'concrete' => 'Concrete',
'orange' => 'Orange',
'pumpkin' => 'Pumpkin',
'pomegranate' => 'Pomegranate',
'silver' => 'Silver',
'asbestos' => 'Asbestos'
)
)
),
'child_shortcode' => array(
'params' => array(
'content' => array(
'std' => 'Tab Content',
'type' => 'textarea',
'label' => __('Section Content', 'coffee'),
'desc' => __('Add the section content', 'coffee')
)
),
'shortcode' => '</br> [coffee_shortcode_pricing_tab] <p> {{content}} </p> [/coffee_shortcode_pricing_tab] </br>',
'clone_button' => __('Add Row', 'coffee')
),
'shortcode' => '[coffee_shortcode_pricing column="{{column}}" last_column="{{last_column}}" featured="{{featured}}" title="{{title}}" price="{{price}}" price_per="price_per" colour="{{colour}}"] {{child_shortcode}} [/coffee_shortcode_pricing]',
'popup_title' => __('Insert Pricing Table', 'coffee')
);
$coffee_shortcodes['heading'] = array(
'no_preview' => true,
'params' => array(
'heading' => array(
'std' => 'h1',
'type' => 'select',
'options' => array(
'h1' => 'H1',
'h2' => 'H2',
'h3' => 'H3',
'h4' => 'H4',
'h5' => 'H5',
'h6' => 'H6'
),
'label' => __('Heading', 'coffee'),
'desc' => __('Pick heading.', 'coffee')
),
'content' => array(
'std' => 'Heading Content',
'type' => 'text',
'label' => __('Heading Content', 'coffee'),
'desc' => __('Add the heading content', 'coffee')
)
),
'shortcode' => '[coffee_shortcode_heading heading="{{heading}}"]{{content}}[/coffee_shortcode_heading]',
'popup_title' => __('Insert Heading', 'coffee')
);
$coffee_shortcodes['list'] = array(
'no_preview' => true,
'params' => array(
'icon' => array(
'type' => 'select-icons',
'std' => 'icon-glass',
'label' => __('Button Icon', 'coffee'),
'desc' => __('Pick icon for button.', 'coffee'),
),
'colour' => array(
'type' => 'select',
'std' => 'turquoise',
'label' => __('Button Colour', 'coffee'),
'desc' => __('Select the colour.', 'coffee'),
'options' => array(
'turquoise' => 'Turquoise',
'emerald' => 'Emerald',
'peter-river' => 'Peter-river',
'amethyst' => 'Amethyst',
'wet-asphalt' => 'Wet-asphalt',
'green-sea' => 'Green-sea',
'nephritis' => 'Nephritis',
'belize-hole' => 'Belize-hole',
'wisteria' => 'Wisteria',
'midnight-blue' => 'Midnight-blue',
'sun-flower' => 'Sun-flower',
'carrot' => 'Carrot',
'alizarin' => 'Alizarin',
'clouds' => 'Clouds',
'concrete' => 'Concrete',
'orange' => 'Orange',
'pumpkin' => 'Pumpkin',
'pomegranate' => 'Pomegranate',
'silver' => 'Silver',
'asbestos' => 'Asbestos'
)
),
),
'child_shortcode' => array(
'params' => array(
'content' => array(
'std' => 'List Item Content',
'type' => 'textarea',
'label' => __('Element Content', 'coffee'),
'desc' => __('Add element content.', 'coffee')
)
),
'shortcode' => '</br> [coffee_shortcode_list_item] <p> {{content}} </p> [/coffee_shortcode_list_item] </br>',
'clone_button' => __('Add List Element', 'coffee')
),
'shortcode' => '[coffee_shortcode_list icon="{{icon}}" colour="{{colour}}"] {{child_shortcode}} [/coffee_shortcode_list]',
'popup_title' => __('Insert List', 'coffee')
);
$coffee_shortcodes['accordion'] = array(
'no_preview' => true,
'params' => array(
'column' => array(
'type' => 'select',
'std' => 'one-one',
'label' => __('Column', 'coffee'),
'desc' => __('Select Column.', 'coffee'),
'options' => array(
'one-one' => 'Full Width',
'one-half' => 'One Half',
'one-third' => 'One Third',
'two-third' => 'Two Thirds',
'three-fourth' => 'Three Fourths',
'one-fourth' => 'One Fourth'
)
),
'last_column' => array(
'std' => 'false',
'type' => 'select',
'options' => array(
'false' => 'False',
'true' => 'True'
),
'label' => __('Last Column', 'coffee'),
'desc' => __('If this is last column in row select true. Full width column don\'t need that.', 'coffee')
),
),
'child_shortcode' => array(
'params' => array(
'title' => array(
'std' => 'Sample Title',
'type' => 'text',
'label' => __('Accordion Title', 'coffee'),
'desc' => __('Add accordion title.', 'coffee')
),
'content' => array(
'std' => 'Accordion Content',
'type' => 'textarea',
'label' => __('Accordion Content', 'coffee'),
'desc' => __('Add accordion content.', 'coffee')
)
),
'shortcode' => '</br> [coffee_shortcode_accordion_section title="{{title}}"] <p> {{content}} </p> [/coffee_shortcode_accordion_section] </br>',
'clone_button' => __('Add Accordion Section', 'coffee')
),
'shortcode' => '[coffee_shortcode_accordion column="{{column}}" last_column="{{last_column}}"]{{child_shortcode}}[/coffee_shortcode_accordion]',
'popup_title' => __('Insert Accordion', 'coffee')
);
$coffee_shortcodes['toggle'] = array(
'no_preview' => true,
'params' => array(
'column' => array(
'type' => 'select',
'std' => 'one-one',
'label' => __('Column', 'coffee'),
'desc' => __('Select Column.', 'coffee'),
'options' => array(
'one-one' => 'Full Width',
'one-half' => 'One Half',
'one-third' => 'One Third',
'two-third' => 'Two Thirds',
'three-fourth' => 'Three Fourths',
'one-fourth' => 'One Fourth'
)
),
'last_column' => array(
'std' => 'false',
'type' => 'select',
'options' => array(
'false' => 'False',
'true' => 'True'
),
'label' => __('Last Column', 'coffee'),
'desc' => __('If this is last column in row select true. Full width column don\'t need that.', 'coffee')
),
),
'child_shortcode' => array(
'params' => array(
'title' => array(
'std' => 'Sample Title',
'type' => 'text',
'label' => __('Toggle TItle', 'coffee'),
'desc' => __('Add toggle title.', 'coffee')
),
'state' => array(
'std' => 'closed',
'type' => 'select',
'options' => array(
'closed' => 'Closed',
'open' => 'Open'
),
'label' => __('Toggle State', 'coffee'),
'desc' => __('Add the toggle title.', 'coffee')
),
'content' => array(
'std' => 'List Item Content',
'type' => 'textarea',
'label' => __('Toggle Content', 'coffee'),
'desc' => __('Add toggle content.', 'coffee')
)
),
'shortcode' => '</br> [coffee_shortcode_toggle_section state="{{state}}" title="{{title}}"] <p> {{content}} </p> [/coffee_shortcode_toggle_section] </br>',
'clone_button' => __('Add Toggle Section', 'coffee')
),
'shortcode' => '[coffee_shortcode_toggle column="{{column}}" last_column="{{last_column}}"]{{child_shortcode}}[/coffee_shortcode_toggle]',
'popup_title' => __('Insert Toggle', 'coffee')
);
$coffee_shortcodes['tabs'] = array(
'no_preview' => true,
'params' => array(
'column' => array(
'type' => 'select',
'std' => 'one-one',
'label' => __('Column', 'coffee'),
'desc' => __('Select Column.', 'coffee'),
'options' => array(
'one-one' => 'Full Width',
'one-half' => 'One Half',
'one-third' => 'One Third',
'two-third' => 'Two Thirds',
'three-fourth' => 'Three Fourths',
'one-fourth' => 'One Fourth'
)
),
'last_column' => array(
'std' => 'false',
'type' => 'select',
'options' => array(
'false' => 'False',
'true' => 'True'
),
'label' => __('Last Column', 'coffee'),
'desc' => __('If this is last column in row select true. Full width column don\'t need that.', 'coffee')
),
),
'child_shortcode' => array(
'params' => array(
'title' => array(
'std' => 'Sample Title',
'type' => 'text',
'label' => __('Tab Title', 'coffee'),
'desc' => __('Add the tab title.', 'coffee')
),
'content' => array(
'std' => 'Tab Content',
'type' => 'textarea',
'label' => __('Tab Content', 'coffee'),
'desc' => __('Add tab content.', 'coffee')
)
),
'shortcode' => '</br> [coffee_shortcode_tab title="{{title}}"] <p> {{content}} </p> [/coffee_shortcode_tab] </br>',
'clone_button' => __('Add Tab', 'coffee')
),
'shortcode' => '[coffee_shortcode_tabs column="{{column}}" last_column="{{last_column}}"]{{child_shortcode}}[/coffee_shortcode_tabs]',
'popup_title' => __('Insert Tabs', 'coffee')
);
?>
ACC SHELL 2018