文件操作 - accordion.php
返回文件管理
返回主菜单
删除本文件
文件: /root/Desktop/OLD/wp-pagebuilder/addons/accordion/accordion.php
编辑文件内容
<?php if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } class WPPB_Addon_Accordion{ public function get_name(){ return 'wppb_accordion'; } public function get_title(){ return 'Accordion'; } public function get_icon() { return 'wppb-font-accordian'; } // Accordion Settings Fields public function get_settings() { $settings = array( 'accordion_list' => array( 'title' => __('Accordion','wp-pagebuilder'), 'type' => 'repeatable', 'label' => 'title', 'std' => array( array( 'title' => 'Page Builder', 'icon_list' => 'far fa-star', 'icon_position' => 'left', 'content' => 'Reprehenderit enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor', ), array( 'title' => 'Drag and Drop', 'icon_list' => 'fas fa-arrows-alt', 'icon_position' => 'right', 'content' => 'Anim pariatur cliche reprehenderit enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor', ), array( 'title' => 'WordPress Theme', 'icon_position' => 'right', 'content' => 'Cliche reprehenderit enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor', ), ), 'attr' => array( 'title' => array( 'type' => 'text', 'title' => __('Item title','wp-pagebuilder'), 'std' => '1 year customer support', ), 'icon_list' => array( 'type' => 'icon', 'title' => __('Icon','wp-pagebuilder'), 'std' => '', ), 'icon_position' => array( 'type' => 'select', 'title' => __('Title icon position','wp-pagebuilder'), 'depends' => array(array('icon_list', '!=', '')), 'values' => array( 'left' => __('Left','wp-pagebuilder'), 'right' => __('Right','wp-pagebuilder'), ), 'std' => 'left', ), 'content' => array( 'type' => 'editor', 'title' => __('Contents','wp-pagebuilder'), 'std' => '1 year customer support', ), ), ), 'openitem' => array( 'type' => 'select', 'title' => __('Behavior','wp-pagebuilder'), 'values' => array( '' => __('Open first item','wp-pagebuilder'), 'show' => __('Open all items','wp-pagebuilder'), 'hide' => __('Close all items','wp-pagebuilder'), ), 'std' => '', ), 'navigation' => array( 'type' => 'select', 'title' => __('Navigation style','wp-pagebuilder'), 'values' => array( '' => __('None','wp-pagebuilder'), 'fas fa-plus' => __('Plus','wp-pagebuilder'), 'fas fa-plus-circle' => __('Plus circle','wp-pagebuilder'), 'fas fa-plus-square' => __('Plus fill square','wp-pagebuilder'), 'fas fa-arrow-circle-right' => __('Arrow fill circle','wp-pagebuilder'), 'fas fa-angle-right' => __('Angle','wp-pagebuilder'), 'fas fa-angle-double-right' => __('Angle double','wp-pagebuilder'), 'fas fa-chevron-right' => __('Chevron','wp-pagebuilder'), 'fas fa-chevron-circle-right' => __('Chevron circle','wp-pagebuilder'), 'fas fa-caret-right' => __('Caret','wp-pagebuilder'), ), 'std' => 'fas fa-angle-right', ), 'navigation_direction' => array( 'type' => 'select', 'title' => __('Navigation Direction','wp-pagebuilder'), 'values' => array( 'left' => __('Left','wp-pagebuilder'), 'right' => __('Right','wp-pagebuilder'), ), 'std' => 'right', ), // Style Area 'title_style' => array( 'type' => 'typography', 'title' => __('Typography','wp-pagebuilder'), 'std' => array( 'fontFamily' => '', 'fontSize' => array( 'md'=>'14px', 'sm'=>'', 'xs'=>'' ), 'lineHeight' => array( 'md'=>'', 'sm'=>'', 'xs'=>'' ), 'fontWeight' => '700', 'textTransform' => '', 'fontStyle' => '', 'letterSpacing' => array( 'md'=>'', 'sm'=>'', 'xs'=>'' ), ), 'tab' => 'style', 'selector' => '{{SELECTOR}} .wppb-accordion-title', 'section' => 'Title', ), 'title_color' => array( 'type' => 'color2', 'title' => 'Color', 'clip' => true, 'selector' => '{{SELECTOR}} .wppb-accordion-title-content', 'tab' =>'style', 'std' => array( 'colorType' => 'color', 'clip' => true, 'colorColor' => '#666666', ), 'section' => 'Title', ), 'title_bg2' => array( 'type' => 'color2', 'title' => 'Background color', 'selector' => '{{SELECTOR}} .wppb-accordion-title', 'tab' =>'style', 'clip' => false, 'std' => array( 'colorType' => 'color', 'colorColor' => '#f8f8f8', 'clip' => false ), 'section' => 'Title', 'selector' => '{{SELECTOR}} .wppb-accordion-title', ), 'title_active_color' => array( 'type' => 'color2', 'title' => __('Active color','wp-pagebuilder'), 'tab' => 'style', 'section' => 'Title', 'clip' => true, 'std' => array( 'colorType' => 'color', 'clip' => true, 'colorColor' => '#101010', ), 'selector' => '{{SELECTOR}} .wppb-accordion-title.active .wppb-accordion-title-content' ), 'title_active_bg'=> array( 'type' => 'color2', 'title' => 'Active background', 'selector' => '{{SELECTOR}} .wppb-accordion-title.active', 'tab' => 'style', 'clip' => false, 'std' => array( 'clip' => false, 'colorType' => 'color', 'colorColor' => '#f8f8f8', ), 'section' => 'Title', ), 'title_active_border'=> array( 'type' => 'color', 'std' => '#f8f8f8', 'title' => 'Active Border', 'tab' => 'style', 'section' => 'Title', 'std' => '#e5e5e5', 'selector' => '{{SELECTOR}} .wppb-accordion-title.active { border-color: {{data.title_active_border}}; }' ), 'title_border_radius' => array( 'type' => 'dimension', 'title' => 'Title border radius', 'responsive' => true, 'tab' => 'style', 'section' => 'Title', 'selector' => '{{SELECTOR}} .wppb-accordion-title { border-radius: {{data.title_border_radius}}; }' ), 'title_sept_space' => array( 'type' => 'slider', 'title' => __('Title separator spacing','wp-pagebuilder'), 'unit' => array( 'px','em' ), 'range' => array( 'em' => array( 'min' => -10, 'max' => 20, 'step' => 1, ), 'px' => array( 'min' => -20, 'max' => 150, 'step' => 1, ), ), 'std' => array( 'md' => '-1px', 'sm' => '', 'xs' => '', ), 'responsive' => true, 'tab' => 'style', 'section' => 'Title', 'selector' => '{{SELECTOR}} .wppb-accordion-title:not(.active) { margin-top: {{data.title_sept_space}}; }', ), 'title_padding' => array( 'type' => 'dimension', 'title' => 'Padding', 'std' => array( 'md' => array( 'top' => '10px', 'right' => '30px', 'bottom' => '10px', 'left' => '15px' ), 'sm' => array( 'top' => '', 'right' => '', 'bottom' => '', 'left' => '' ), 'xs' => array( 'top' => '', 'right' => '', 'bottom' => '', 'left' => '' ), ), 'responsive' => true, 'tab' => 'style', 'section' => 'Title', 'selector' => '{{SELECTOR}} .wppb-accordion-title { padding: {{data.title_padding}}; }' ), 'icon_size' => array( 'type' => 'slider', 'title' => __('Icon Size','wp-pagebuilder'), 'unit' => array( 'px','em' ), 'range' => array( 'em' => array( 'min' => 0, 'max' => 100, 'step' => .1, ), 'px' => array( 'min' => 0, 'max' => 100, 'step' => 1, ), ), 'std' => array( 'md' => '12px', 'sm' => '', 'xs' => '', ), 'responsive' => true, 'section' => 'Icon', 'tab' => 'style', 'selector' => '{{SELECTOR}} .wppb-accordion-title > i{ font-size: {{data.icon_size}}; }', ), 'icon_color' => array( 'type' => 'color', 'title' => __('Color','wp-pagebuilder'), 'tab' => 'style', 'section' => 'Icon', 'std' => '#666666', 'selector' => '{{SELECTOR}} .wppb-accordion-title > i{ color: {{data.icon_color}}; }' ), 'icon_active_color' => array( 'type' => 'color', 'title' => __('Active color','wp-pagebuilder'), 'tab' => 'style', 'section' => 'Icon', 'std' => '#101010', 'selector' => '{{SELECTOR}} .wppb-accordion-title.active > i { color: {{data.icon_active_color}}; }' ), 'nav_icon_size' => array( 'type' => 'slider', 'title' => __('Navigation Icon Size','wp-pagebuilder'), 'unit' => array( 'px','em' ), 'range' => array( 'em' => array( 'min' => 0, 'max' => 100, 'step' => .1, ), 'px' => array( 'min' => 0, 'max' => 100, 'step' => 1, ), ), 'std' => array( 'md' => '14px', 'sm' => '', 'xs' => '', ), 'responsive' => true, 'tab' => 'style', 'section' => 'Icon', 'selector' => '{{SELECTOR}} .wppb-accordion-title .wppb-toggle-direction{ font-size: {{data.nav_icon_size}}; }', ), 'nav_icon_color' => array( 'type' => 'color', 'title' => __('Navigation icon color','wp-pagebuilder'), 'tab' => 'style', 'section' => 'Icon', 'std' => '#666666', 'selector' => '{{SELECTOR}} .wppb-accordion-title .wppb-toggle-direction{ color: {{data.nav_icon_color}}; }' ), 'nav_icon_active_color' => array( 'type' => 'color', 'title' => __('Navigation icon active color','wp-pagebuilder'), 'tab' => 'style', 'section' => 'Icon', 'std' => '#000000', 'selector' => '{{SELECTOR}} .wppb-accordion-title.active .wppb-toggle-direction{ color: {{data.nav_icon_active_color}}; }' ), 'content_color' => array( 'type' => 'color', 'title' => __('Color','wp-pagebuilder'), 'tab' => 'style', 'section' => 'Content', 'std' => '#888888', 'selector' => '{{SELECTOR}} .wppb-accordion-content { color: {{data.content_color}}; }' ), 'content_bgcolor' => array( 'type' => 'color', 'title' => __('Background color','wp-pagebuilder'), 'tab' => 'style', 'section' => 'Content', 'std' => '#ffffff', 'selector' => '{{SELECTOR}} .wppb-accordion-content { background: {{data.content_bgcolor}}; }' ), 'content_style' => array( 'type' => 'typography', 'title' => __('Typography','wp-pagebuilder'), 'std' => array( 'fontFamily' => '', 'fontSize' => array( 'md'=>'14px', 'sm'=>'', 'xs'=>'' ), 'lineHeight' => array( 'md'=>'', 'sm'=>'', 'xs'=>'' ), 'fontWeight' => '700', 'textTransform' => '', 'fontStyle' => '', 'letterSpacing' => array( 'md'=>'', 'sm'=>'', 'xs'=>'' ), ), 'tab' => 'style', 'selector' => '{{SELECTOR}} .wppb-accordion-content', 'section' => 'Content', ), 'content_border_radius' => array( 'type' => 'dimension', 'title' => 'Content border radius', 'responsive' => true, 'tab' => 'style', 'section' => 'Content', 'selector' => '{{SELECTOR}} .wppb-accordion-content { border-radius: {{data.content_border_radius}}; }' ), 'content_margin' => array( 'type' => 'dimension', 'title' => 'Content margin', 'std' => array( 'md' => array( 'top' => '', 'right' => '', 'bottom' => '', 'left' => '' ), 'sm' => array( 'top' => '', 'right' => '', 'bottom' => '', 'left' => '' ), 'xs' => array( 'top' => '', 'right' => '', 'bottom' => '', 'left' => '' ), ), 'responsive' => true, 'tab' => 'style', 'section' => 'Content', 'selector' => '{{SELECTOR}} .wppb-accordion-content { margin: {{data.content_margin}}; }' ), 'content_padding' => array( 'type' => 'dimension', 'title' => 'Padding', 'std' => array( 'md' => array( 'top' => '15px', 'right' => '15px', 'bottom' => '15px', 'left' => '15px' ), 'sm' => array( 'top' => '', 'right' => '', 'bottom' => '', 'left' => '' ), 'xs' => array( 'top' => '', 'right' => '', 'bottom' => '', 'left' => '' ), ), 'unit' => array( 'px','em','%' ), 'responsive' => true, 'tab' => 'style', 'section' => 'Content', 'selector' => '{{SELECTOR}} .wppb-accordion-content{ padding: {{data.content_padding}}; }' ), 'content_align' => array( 'type' => 'alignment', 'title' => __('Alignment','wp-pagebuilder'), 'responsive' => true, 'tab' => 'style', 'section' => 'Content', 'selector' => '{{SELECTOR}} .wppb-accordion-content { text-align: {{data.content_align}}; }' ), 'item_border' => array( 'type' => 'border', 'title' => 'Title Border', 'std' => array( 'itemOpenBorder' => 1, 'borderWidth' => array( 'top' => '1px', 'right' => '1px', 'bottom' => '1px', 'left' => '1px' ), 'borderStyle' => 'solid', 'borderColor' => '#e5e5e5' ), 'tab' => 'style', 'section' => 'Border', 'selector' => '{{SELECTOR}} .wppb-accordion-title' ), 'content_border' => array( 'type' => 'border', 'title' => 'Content Border', 'std' => array( 'itemOpenBorder' => 1, 'borderWidth' => array( 'top' => '0px', 'right' => '1px', 'bottom' => '1px', 'left' => '1px' ), 'borderStyle' => 'solid', 'borderColor' => '#e5e5e5' ), 'tab' => 'style', 'section' => 'Border', 'selector' => '{{SELECTOR}} .wppb-accordion-content' ), ); return $settings; } // Accordion Render HTML public function render($data = null){ $settings = $data['settings']; $accordion_list = isset($settings["accordion_list"]) ? $settings["accordion_list"] : array(); $openitem = isset($settings["openitem"]) ? $settings["openitem"] : ''; $navigation = isset($settings["navigation"]) ? $settings["navigation"] : 'fa-angle-right'; $navigation_direction = isset($settings["navigation_direction"]) ? $settings["navigation_direction"] : 'right'; $output = ''; $output .= '<div class="wppb-accordion-addon">'; $output .= '<div class="wppb-accordion-addon-content">'; $output .= '<div class="wppb-accordion-items">'; if (is_array($accordion_list) && count($accordion_list)){ foreach ( $accordion_list as $key => $value ) { $output .= '<div class="wppb-accordion-item repeater-'.$key.'">'; $activeClass = (($key == 0 || $openitem == "show") && $openitem != "hide") ? "active" : ""; $output .= '<div class="wppb-accordion-title wppb-toggle-'.$navigation_direction.' '.$activeClass.'">'; if( $navigation_direction == 'left' ) { if($navigation) { $output .= '<span class="wppb-toggle-direction wppb-toggle-'.$navigation_direction.'"><i class="fas '.$navigation.'"></i></span>'; } } if(get_wppb_array_value_by_key($value, 'icon_position') == "left" ) { if(! empty($value['icon_list'])){ $output .= '<i class="'.$value['icon_list'].'"></i>'; } } if( get_wppb_array_value_by_key($value, 'title') ){ $output .= '<span class="wppb-accordion-title-content">'.$value['title'].'</span>'; } if(get_wppb_array_value_by_key($value, 'icon_position') == "right" ) { if(! empty($value['icon_list'])){ $output .= '<i class="'.$value['icon_list'].'"></i>'; } } if( $navigation_direction == 'right' ) { if($navigation) { $output .= '<span class="wppb-toggle-direction wppb-toggle-'.$navigation_direction.'"><i class="fas '.$navigation.'"></i></span>'; } } $output .= '</div>';//wppb-accordion-title $panelStyle = (($key != 0 || $openitem == "hide") && $openitem != "show") ? "display: none;" : ""; $output .= '<div class="wppb-panel-collapse" style="'.$panelStyle.'">'; $output .= '<div class="wppb-accordion-content">'.wp_kses_post( $value['content'] ).'</div>'; $output .= '</div>';//wppb-panel-collapse $output .= '</div>'; } } $output .= '</div>'; $output .= '</div>'; $output .= '</div>'; return $output; } // Accordion Template public function getTemplate(){ $output = ' <div class="wppb-accordion-addon"> <div class="wppb-accordion-addon-content"> <div class="wppb-accordion-items"> <# __.forEach(data.accordion_list, function(value, key) { #> <div class="wppb-accordion-item repeater-{{key}}"> <# var navigation_direction = data.navigation_direction ? data.navigation_direction : "right" #> <# var activeClass = ((key == 0 || data.openitem == "show") && data.openitem != "hide") ? "active" : ""; #> <div class="wppb-accordion-title wppb-toggle-{{navigation_direction}} {{ activeClass }}"> <# if(navigation_direction == "left") { #> <# if(data.navigation) { #> <span class="wppb-toggle-direction wppb-toggle-{{navigation_direction}}"><i class="fas {{data.navigation}}"></i></span> <# } #> <# } #> <# if(value.icon_position == "left" && !__.isEmpty(value.icon_list)) { #> <i class="{{ value.icon_list }}"></i><# } #><span class="wppb-accordion-title-content">{{value.title}}</span><# if(value.icon_position == "right" && !__.isEmpty(value.icon_list)) { #> <i class=" {{ value.icon_list }}"></i><# } #> <# if(navigation_direction == "right") { #> <# if(data.navigation) { #> <span class="wppb-toggle-direction wppb-toggle-{{navigation_direction}}"><i class="fas {{data.navigation}}"></i></span> <# } #> <# } #> </div> <# var panelStyle = ((key != 0 || data.openitem == "hide") && data.openitem != "show") ? "display: none;" : ""; #> <div class="wppb-panel-collapse" style="{{ panelStyle }}"> <div class="wppb-accordion-content">{{{value.content}}}</div> </div> </div> <# }); #> </div> </div> </div> '; return $output; } }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件