config['php_class'] = get_class($this); // element id $this->config['id'] = 'post_slider'; // element name $this->config['name'] = __('Post Silder', 'fusion-core'); // element icon $this->config['icon_url'] = "icons/sc-text_block.png"; // css class related to this element $this->config['css_class'] = "fusion_element_box"; // element icon class $this->config['icon_class'] = 'fusion-icon builder-options-icon fusiona-layers-alt'; // tooltip that will be displyed upon mouse over the element //$this->config['tool_tip'] = 'Creates Elastic Slider'; // any special html data attribute (i.e. data-width) needs to be passed // drop_level: elements with higher drop level can be dropped in elements with lower drop_level, // i.e. element with drop_level = 2 can be dropped in element with drop_level = 0 or 1 only. $this->config['data'] = array("drop_level" => "4"); } // override default implemenation for this function as this element have special view public function create_visual_editor( $params ) { $innerHtml = '
'; $innerHtml .= '
'.__('Post Silder', 'fusion-core').'

layout = posts-with-excerpts
category = design

'; $innerHtml .= '
'; $this->config['innerHtml'] = $innerHtml; } //this function defines TextBlock sub elements or structure function popup_elements() { $wp_categories = Helper::get_wp_categories_list(); $cat_element = array('' => 'All'); $wp_categories = $cat_element + $wp_categories; $this->config['subElements'] = array( array("name" => __('Layout', 'fusion-core'), "desc" => __('Choose a layout style for Post Slider.', 'fusion-core'), "id" => "fusion_type", "type" => ElementTypeEnum::SELECT, "value" => "posts", "allowedValues" => array('posts' => __('Posts with Title', 'fusion-core'), 'posts-with-excerpt' => __('Posts with Title and Excerpt', 'fusion-core'), 'attachments' => __('Attachment Layout, Only Images Attached to Post/Page', 'fusion-core')) ), array("name" => __('Excerpt Number of Words', 'fusion-core'), "desc" => __('Insert the number of words you want to show in the excerpt.', 'fusion-core'), "id" => "fusion_excerpt", "type" => ElementTypeEnum::INPUT, "value" => "35", ), array("name" => __('Category', 'fusion-core'), "desc" => __('Select a category of posts to display.', 'fusion-core'), "id" => "fusion_category", "type" => ElementTypeEnum::SELECT, "value" => "", "allowedValues" => $wp_categories ), array("name" => __('Number of Slides', 'fusion-core'), "desc" => __('Select the number of slides to display.', 'fusion-core'), "id" => "fusion_limit", "type" => ElementTypeEnum::INPUT, "value" => "3" ), array("name" => __('Lightbox on Click', 'fusion-core'), "desc" => __('Only works on attachment layout.', 'fusion-core'), "id" => "fusion_lightbox", "type" => ElementTypeEnum::SELECT, "value" => "yes", "allowedValues" => array('yes' => __('Yes', 'fusion-core'), 'no' => __('No', 'fusion-core')) ), array("name" => __('Attach Images to Post/Page Gallery', 'fusion-core'), "desc" => __('Only works for attachments layout.', 'fusion-core'), "id" => "fusion_gallery", "type" => ElementTypeEnum::GALLERY, "value" => " " ), array("name" => __('CSS Class', 'fusion-core'), "desc" => __('Add a class to the wrapping HTML element.', 'fusion-core'), "id" => "fusion_class", "type" => ElementTypeEnum::INPUT, "value" => "" ), array("name" => __('CSS ID', 'fusion-core'), "desc" => __('Add an ID to the wrapping HTML element.', 'fusion-core'), "id" => "fusion_id", "type" => ElementTypeEnum::INPUT, "value" => "" ), ); } }