%PDF- %PDF-
Direktori : /home/eirtvhdf/makkitrust.org/wp-content/plugins/trx_addons/components/cpt/team/ |
Current File : /home/eirtvhdf/makkitrust.org/wp-content/plugins/trx_addons/components/cpt/team/team.php |
<?php /** * ThemeREX Addons Custom post type: Team * * @package WordPress * @subpackage ThemeREX Addons * @since v1.2 */ // Don't load directly if ( ! defined( 'TRX_ADDONS_VERSION' ) ) { die( '-1' ); } // ----------------------------------------------------------------- // -- Custom post type registration // ----------------------------------------------------------------- // Define Custom post type and taxonomy constants if ( ! defined('TRX_ADDONS_CPT_TEAM_PT') ) define('TRX_ADDONS_CPT_TEAM_PT', trx_addons_cpt_param('team', 'post_type')); if ( ! defined('TRX_ADDONS_CPT_TEAM_TAXONOMY') ) define('TRX_ADDONS_CPT_TEAM_TAXONOMY', trx_addons_cpt_param('team', 'taxonomy')); // Register post type and taxonomy if (!function_exists('trx_addons_cpt_team_init')) { add_action( 'init', 'trx_addons_cpt_team_init' ); function trx_addons_cpt_team_init() { // Add Team parameters to the Meta Box support global $TRX_ADDONS_STORAGE; // Need to declare global, because this file included inside autoload function! $TRX_ADDONS_STORAGE['post_types'][] = TRX_ADDONS_CPT_TEAM_PT; $TRX_ADDONS_STORAGE['meta_box_'.TRX_ADDONS_CPT_TEAM_PT] = array( "subtitle" => array( "title" => esc_html__("Position", 'trx_addons'), "desc" => wp_kses_data( __("Team member's position or any other text", 'trx_addons') ), "std" => "", "type" => "text" ), "brief_info" => array( "title" => esc_html__("Brief info", 'trx_addons'), "desc" => wp_kses_data( __("Brief info about this team member to display on the member's single page", 'trx_addons') ), "std" => "", "type" => "textarea" ), 'socials' => array( "title" => esc_html__("Socials", 'trx_addons'), "desc" => wp_kses_data( __("Clone fields group and select icon/image, specify social network's title and URL to team member's profile", 'trx_addons') ), "clone" => true, "std" => array(array()), "type" => "group", "fields" => array( 'title' => array( "title" => esc_html__('Title', 'trx_addons'), "desc" => wp_kses_data( __("Social network's name. If empty - icon's name will be used", 'trx_addons') ), "class" => "trx_addons_column-1_3 trx_addons_new_row", "std" => "", "type" => "text" ), 'url' => array( "title" => esc_html__('URL to your profile', 'trx_addons'), "desc" => wp_kses_data( __("Specify URL of team member's profile in this network", 'trx_addons') ), "class" => "trx_addons_column-1_3", "std" => "", "type" => "text" ), "name" => array( "title" => esc_html__("Icon", 'trx_addons'), "desc" => wp_kses_data( __('Select icon of this network', 'trx_addons') ), "class" => "trx_addons_column-1_3", "std" => "", "options" => array(), "style" => trx_addons_get_setting('socials_type'), "type" => "icons" ) ) ) ); // Register post type and taxonomy register_post_type( TRX_ADDONS_CPT_TEAM_PT, array( 'label' => esc_html__( 'Team', 'trx_addons' ), 'description' => esc_html__( 'Team Description', 'trx_addons' ), 'labels' => array( 'name' => esc_html__( 'Team', 'trx_addons' ), 'singular_name' => esc_html__( 'Team member', 'trx_addons' ), 'menu_name' => esc_html__( 'Team', 'trx_addons' ), 'parent_item_colon' => esc_html__( 'Parent Item:', 'trx_addons' ), 'all_items' => esc_html__( 'All Team', 'trx_addons' ), 'view_item' => esc_html__( 'View Team member', 'trx_addons' ), 'add_new_item' => esc_html__( 'Add New Team member', 'trx_addons' ), 'add_new' => esc_html__( 'Add New', 'trx_addons' ), 'edit_item' => esc_html__( 'Edit Team member', 'trx_addons' ), 'update_item' => esc_html__( 'Update Team member', 'trx_addons' ), 'search_items' => esc_html__( 'Search Team member', 'trx_addons' ), 'not_found' => esc_html__( 'Not found', 'trx_addons' ), 'not_found_in_trash' => esc_html__( 'Not found in Trash', 'trx_addons' ), ), 'taxonomies' => array(TRX_ADDONS_CPT_TEAM_TAXONOMY), 'supports' => trx_addons_cpt_param('team', 'supports'), 'public' => true, 'hierarchical' => false, 'has_archive' => true, 'can_export' => true, 'show_in_admin_bar' => true, 'show_in_menu' => true, 'menu_position' => '53.8', 'menu_icon' => 'dashicons-admin-users', 'capability_type' => 'post', 'rewrite' => array( 'slug' => trx_addons_cpt_param('team', 'post_type_slug') ) ) ); register_taxonomy( TRX_ADDONS_CPT_TEAM_TAXONOMY, TRX_ADDONS_CPT_TEAM_PT, array( 'post_type' => TRX_ADDONS_CPT_TEAM_PT, 'hierarchical' => true, 'labels' => array( 'name' => esc_html__( 'Team Group', 'trx_addons' ), 'singular_name' => esc_html__( 'Group', 'trx_addons' ), 'search_items' => esc_html__( 'Search Groups', 'trx_addons' ), 'all_items' => esc_html__( 'All Groups', 'trx_addons' ), 'parent_item' => esc_html__( 'Parent Group', 'trx_addons' ), 'parent_item_colon' => esc_html__( 'Parent Group:', 'trx_addons' ), 'edit_item' => esc_html__( 'Edit Group', 'trx_addons' ), 'update_item' => esc_html__( 'Update Group', 'trx_addons' ), 'add_new_item' => esc_html__( 'Add New Group', 'trx_addons' ), 'new_item_name' => esc_html__( 'New Group Name', 'trx_addons' ), 'menu_name' => esc_html__( 'Team Groups', 'trx_addons' ), ), 'show_ui' => true, 'show_admin_column' => true, 'query_var' => true, 'rewrite' => array( 'slug' => trx_addons_cpt_param('team', 'taxonomy_slug') ) ) ); } } // Add 'Team' parameters in the ThemeREX Addons Options if (!function_exists('trx_addons_cpt_team_options')) { add_filter( 'trx_addons_filter_options', 'trx_addons_cpt_team_options'); function trx_addons_cpt_team_options($options) { trx_addons_array_insert_after($options, 'cpt_section', trx_addons_cpt_team_get_list_options()); return $options; } } // Return parameters list for plugin's options if (!function_exists('trx_addons_cpt_team_get_list_options')) { function trx_addons_cpt_team_get_list_options($add_parameters=array()) { return apply_filters('trx_addons_cpt_list_options', array( 'team_info' => array( "title" => esc_html__('Team', 'trx_addons'), "desc" => wp_kses_data( __('Settings of the team members archive', 'trx_addons') ), "type" => "info" ), 'team_style' => array( "title" => esc_html__('Style', 'trx_addons'), "desc" => wp_kses_data( __('Style of the team archive', 'trx_addons') ), "std" => 'default_2', "options" => apply_filters('trx_addons_filter_cpt_archive_styles', trx_addons_components_get_allowed_layouts('cpt', 'team', 'arh'), TRX_ADDONS_CPT_TEAM_PT), "type" => "select" ) ), 'team'); } } // Load required styles and scripts for the frontend if ( !function_exists( 'trx_addons_cpt_team_load_scripts_front' ) ) { add_action("wp_enqueue_scripts", 'trx_addons_cpt_team_load_scripts_front'); function trx_addons_cpt_team_load_scripts_front() { if (trx_addons_is_on(trx_addons_get_option('debug_mode'))) { wp_enqueue_style( 'trx_addons-cpt_team', trx_addons_get_file_url(TRX_ADDONS_PLUGIN_CPT . 'team/team.css'), array(), null ); } } } // Merge shortcode's specific styles into single stylesheet if ( !function_exists( 'trx_addons_cpt_team_merge_styles' ) ) { add_action("trx_addons_filter_merge_styles", 'trx_addons_cpt_team_merge_styles'); function trx_addons_cpt_team_merge_styles($list) { $list[] = TRX_ADDONS_PLUGIN_CPT . 'team/team.css'; return $list; } } // Return true if it's team page if ( !function_exists( 'trx_addons_is_team_page' ) ) { function trx_addons_is_team_page() { return defined('TRX_ADDONS_CPT_TEAM_PT') && !is_search() && ( (is_single() && get_post_type()==TRX_ADDONS_CPT_TEAM_PT) || is_post_type_archive(TRX_ADDONS_CPT_TEAM_PT) || is_tax(TRX_ADDONS_CPT_TEAM_TAXONOMY) ); } } // Return taxonomy for the current post type if ( !function_exists( 'trx_addons_cpt_team_post_type_taxonomy' ) ) { add_filter( 'trx_addons_filter_post_type_taxonomy', 'trx_addons_cpt_team_post_type_taxonomy', 10, 2 ); function trx_addons_cpt_team_post_type_taxonomy($tax='', $post_type='') { if ( defined('TRX_ADDONS_CPT_TEAM_PT') && $post_type == TRX_ADDONS_CPT_TEAM_PT ) $tax = TRX_ADDONS_CPT_TEAM_TAXONOMY; return $tax; } } // Return link to the all posts for the breadcrumbs if ( !function_exists( 'trx_addons_cpt_team_get_blog_all_posts_link' ) ) { add_filter('trx_addons_filter_get_blog_all_posts_link', 'trx_addons_cpt_team_get_blog_all_posts_link', 10, 2); function trx_addons_cpt_team_get_blog_all_posts_link($link='', $args=array()) { if ($link=='') { if (trx_addons_is_team_page() && !is_post_type_archive(TRX_ADDONS_CPT_TEAM_PT)) $link = '<a href="'.esc_url(get_post_type_archive_link( TRX_ADDONS_CPT_TEAM_PT )).'">'.esc_html__('All Team Members', 'trx_addons').'</a>'; } return $link; } } // Return current page title if ( !function_exists( 'trx_addons_cpt_team_get_blog_title' ) ) { add_filter( 'trx_addons_filter_get_blog_title', 'trx_addons_cpt_team_get_blog_title'); function trx_addons_cpt_team_get_blog_title($title='') { if ( defined('TRX_ADDONS_CPT_TEAM_PT') ) { if ( is_post_type_archive(TRX_ADDONS_CPT_TEAM_PT) ) $title = esc_html__('All Team Members', 'trx_addons'); //else if (is_single() && get_post_type()==TRX_ADDONS_CPT_TEAM_PT) // $title = esc_html__('Team Member', 'trx_addons'); } return $title; } } // Replace standard theme templates //------------------------------------------------------------- // Change standard single template for team posts if ( !function_exists( 'trx_addons_cpt_team_single_template' ) ) { add_filter('single_template', 'trx_addons_cpt_team_single_template'); function trx_addons_cpt_team_single_template($template) { global $post; if (is_single() && $post->post_type == TRX_ADDONS_CPT_TEAM_PT) $template = trx_addons_get_file_dir(TRX_ADDONS_PLUGIN_CPT . 'team/tpl.single.php'); return $template; } } // Change standard archive template for team posts if ( !function_exists( 'trx_addons_cpt_team_archive_template' ) ) { add_filter('archive_template', 'trx_addons_cpt_team_archive_template'); function trx_addons_cpt_team_archive_template( $template ) { if ( is_post_type_archive(TRX_ADDONS_CPT_TEAM_PT) ) $template = trx_addons_get_file_dir(TRX_ADDONS_PLUGIN_CPT . 'team/tpl.archive.php'); return $template; } } // Change standard category template for team categories (groups) if ( !function_exists( 'trx_addons_cpt_team_taxonomy_template' ) ) { add_filter('taxonomy_template', 'trx_addons_cpt_team_taxonomy_template'); function trx_addons_cpt_team_taxonomy_template( $template ) { if ( is_tax(TRX_ADDONS_CPT_TEAM_TAXONOMY) ) $template = trx_addons_get_file_dir(TRX_ADDONS_PLUGIN_CPT . 'team/tpl.archive.php'); return $template; } } // Admin utils // ----------------------------------------------------------------- // Show <select> with team categories in the admin filters area if (!function_exists('trx_addons_cpt_team_admin_filters')) { add_action( 'restrict_manage_posts', 'trx_addons_cpt_team_admin_filters' ); function trx_addons_cpt_team_admin_filters() { trx_addons_admin_filters(TRX_ADDONS_CPT_TEAM_PT, TRX_ADDONS_CPT_TEAM_TAXONOMY); } } // Clear terms cache on the taxonomy save if (!function_exists('trx_addons_cpt_team_admin_clear_cache')) { add_action( 'edited_'.TRX_ADDONS_CPT_TEAM_TAXONOMY, 'trx_addons_cpt_team_admin_clear_cache', 10, 1 ); add_action( 'delete_'.TRX_ADDONS_CPT_TEAM_TAXONOMY, 'trx_addons_cpt_team_admin_clear_cache', 10, 1 ); add_action( 'created_'.TRX_ADDONS_CPT_TEAM_TAXONOMY, 'trx_addons_cpt_team_admin_clear_cache', 10, 1 ); function trx_addons_cpt_team_admin_clear_cache( $term_id=0 ) { trx_addons_admin_clear_cache_terms(TRX_ADDONS_CPT_TEAM_TAXONOMY); } } // trx_sc_team //------------------------------------------------------------- /* [trx_sc_team id="unique_id" type="default" cat="category_slug or id" count="3" columns="3" slider="0|1"] */ if ( !function_exists( 'trx_addons_sc_team' ) ) { function trx_addons_sc_team($atts, $content=null) { $atts = trx_addons_sc_prepare_atts('trx_sc_team', $atts, array( // Individual params "type" => "default", "columns" => "", "cat" => "", "count" => 3, "offset" => 0, "orderby" => '', "order" => '', "ids" => '', "slider" => 0, "slider_pagination" => "none", "slider_controls" => "none", "slides_space" => 0, "title" => "", "subtitle" => "", "description" => "", "link" => '', "link_image" => '', "link_text" => esc_html__('Learn more', 'trx_addons'), "title_align" => "left", "title_style" => "default", "title_tag" => '', // Common params "id" => "", "class" => "", "css" => "" ) ); if (!empty($atts['ids'])) { $atts['ids'] = str_replace(array(';', ' '), array(',', ''), $atts['ids']); $atts['count'] = count(explode(',', $atts['ids'])); } $atts['count'] = max(1, (int) $atts['count']); $atts['offset'] = max(0, (int) $atts['offset']); if (empty($atts['orderby'])) $atts['orderby'] = 'title'; if (empty($atts['order'])) $atts['order'] = 'asc'; $atts['slider'] = max(0, (int) $atts['slider']); if ($atts['slider'] > 0 && (int) $atts['slider_pagination'] > 0) $atts['slider_pagination'] = 'bottom'; ob_start(); trx_addons_get_template_part(array( TRX_ADDONS_PLUGIN_CPT . 'team/tpl.'.trx_addons_esc($atts['type']).'.php', TRX_ADDONS_PLUGIN_CPT . 'team/tpl.default.php' ), 'trx_addons_args_sc_team', $atts ); $output = ob_get_contents(); ob_end_clean(); return apply_filters('trx_addons_sc_output', $output, 'trx_sc_team', $atts, $content); } } // Add [trx_sc_team] in the VC shortcodes list if (!function_exists('trx_addons_sc_team_add_in_vc')) { function trx_addons_sc_team_add_in_vc() { add_shortcode("trx_sc_team", "trx_addons_sc_team"); if (!trx_addons_exists_visual_composer()) return; vc_lean_map("trx_sc_team", 'trx_addons_sc_team_add_in_vc_params'); class WPBakeryShortCode_Trx_Sc_Team extends WPBakeryShortCode {} } add_action('init', 'trx_addons_sc_team_add_in_vc', 20); } // Return params if (!function_exists('trx_addons_sc_team_add_in_vc_params')) { function trx_addons_sc_team_add_in_vc_params() { return apply_filters('trx_addons_sc_map', array( "base" => "trx_sc_team", "name" => esc_html__("Team", 'trx_addons'), "description" => wp_kses_data( __("Display team members from specified group", 'trx_addons') ), "category" => esc_html__('ThemeREX', 'trx_addons'), "icon" => 'icon_trx_sc_team', "class" => "trx_sc_team", "content_element" => true, "is_container" => false, "show_settings_on_create" => true, "params" => array_merge( array( array( "param_name" => "type", "heading" => esc_html__("Layout", 'trx_addons'), "description" => wp_kses_data( __("Select shortcode's layout", 'trx_addons') ), "admin_label" => true, "std" => "default", 'save_always' => true, "value" => array_flip(apply_filters('trx_addons_sc_type', trx_addons_components_get_allowed_layouts('cpt', 'team', 'sc'), 'trx_sc_team')), "type" => "dropdown" ), array( "param_name" => "cat", "heading" => esc_html__("Group", 'trx_addons'), "description" => wp_kses_data( __("Team group", 'trx_addons') ), "value" => array_merge(array(esc_html__('- Select category -', 'trx_addons') => 0), array_flip(trx_addons_get_list_terms(false, TRX_ADDONS_CPT_TEAM_TAXONOMY))), "std" => "0", "type" => "dropdown" ) ), trx_addons_vc_add_query_param(''), trx_addons_vc_add_slider_param(), trx_addons_vc_add_title_param(), trx_addons_vc_add_id_param() ) ), 'trx_sc_team' ); } } // SOW Widget //------------------------------------------------------ if (class_exists('TRX_Addons_SOW_Widget')) { class TRX_Addons_SOW_Widget_Team extends TRX_Addons_SOW_Widget { function __construct() { parent::__construct( 'trx_addons_sow_widget_team', esc_html__('ThemeREX Team members', 'trx_addons'), array( 'classname' => 'widget_team', 'description' => __('Display team', 'trx_addons') ), array(), false, TRX_ADDONS_PLUGIN_DIR ); } // Return array with all widget's fields function get_widget_form() { return apply_filters('trx_addons_sow_map', array_merge( array( 'type' => array( 'label' => __('Layout', 'trx_addons'), "description" => wp_kses_data( __("Select shortcodes's layout", 'trx_addons') ), 'default' => 'default', 'options' => apply_filters('trx_addons_sc_type', trx_addons_components_get_allowed_layouts('cpt', 'team', 'sc'), $this->get_sc_name(), 'sow' ), 'type' => 'select' ), "cat" => array( "label" => esc_html__("Group", 'trx_addons'), "description" => wp_kses_data( __("Select team group", 'trx_addons') ), "default" => 0, "options" => trx_addons_array_merge(array(0 => esc_html__('- Select group -', 'trx_addons')), trx_addons_get_list_terms(false, TRX_ADDONS_CPT_TEAM_TAXONOMY) ), "type" => "select" ) ), trx_addons_sow_add_query_param(''), trx_addons_sow_add_slider_param(), trx_addons_sow_add_title_param(), trx_addons_sow_add_id_param() ), $this->get_sc_name()); } } siteorigin_widget_register('trx_addons_sow_widget_team', __FILE__, 'TRX_Addons_SOW_Widget_Team'); // TRX_Addons Widget //------------------------------------------------------ } else { class TRX_Addons_SOW_Widget_Team extends TRX_Addons_Widget { function __construct() { $widget_ops = array('classname' => 'widget_team', 'description' => esc_html__('Show Team members', 'trx_addons')); parent::__construct( 'trx_addons_sow_widget_team', esc_html__('ThemeREX Team members', 'trx_addons'), $widget_ops ); } // Show widget function widget($args, $instance) { extract($args); $widget_title = apply_filters('widget_title', isset($instance['widget_title']) ? $instance['widget_title'] : ''); $output = trx_addons_sc_team(apply_filters('trx_addons_filter_widget_args', $instance, $instance, 'trx_addons_sow_widget_team') ); if (!empty($output)) { // Before widget (defined by themes) trx_addons_show_layout($before_widget); // Display the widget title if one was input (before and after defined by themes) if ($widget_title) trx_addons_show_layout($before_title . $widget_title . $after_title); // Display widget body trx_addons_show_layout($output); // After widget (defined by themes) trx_addons_show_layout($after_widget); } } // Update the widget settings function update($new_instance, $instance) { $instance = array_merge($instance, $new_instance); $instance['slider'] = isset( $new_instance['slider'] ) ? 1 : 0; return apply_filters('trx_addons_filter_widget_args_update', $instance, $new_instance, 'trx_addons_sow_widget_team'); } // Displays the widget settings controls on the widget panel function form($instance) { // Set up some default widget settings $instance = wp_parse_args( (array) $instance, apply_filters('trx_addons_filter_widget_args_default', array( 'widget_title' => '', // Layout params "type" => "default", // Query params "cat" => "", "columns" => "", "count" => 3, "offset" => 0, "orderby" => '', "order" => '', "ids" => '', // Slider params "slider" => 0, "slider_pagination" => "none", "slider_controls" => "none", "slides_space" => 0, // Title params "title" => "", "subtitle" => "", "description" => "", "link" => '', "link_image" => '', "link_text" => esc_html__('Learn more', 'trx_addons'), "title_align" => "left", "title_style" => "default", "title_tag" => '', // Common params "id" => "", "class" => "", "css" => "" ), 'trx_addons_sow_widget_team') ); do_action('trx_addons_action_before_widget_fields', $instance, 'trx_addons_sow_widget_team'); $this->show_field(array('name' => 'widget_title', 'title' => __('Widget title:', 'trx_addons'), 'value' => $instance['widget_title'], 'type' => 'text')); do_action('trx_addons_action_after_widget_title', $instance, 'trx_addons_sow_widget_team'); $this->show_field(array('name' => 'type', 'title' => __('Layout:', 'trx_addons'), 'value' => $instance['type'], 'options' => apply_filters('trx_addons_sc_type', trx_addons_components_get_allowed_layouts('cpt', 'team', 'sc'), 'trx_widget_team'), 'type' => 'select')); $this->show_field(array('title' => __('Query parameters', 'trx_addons'), 'type' => 'info')); $this->show_field(array('name' => 'cat', 'title' => __('Team Group:', 'trx_addons'), 'value' => $instance['cat'], 'options' => trx_addons_array_merge( array(0 => esc_html__('- Select group -', 'trx_addons')), trx_addons_get_list_terms(false, TRX_ADDONS_CPT_TEAM_TAXONOMY) ), 'type' => 'select')); $this->show_fields_query_param($instance, ''); $this->show_fields_slider_param($instance); $this->show_fields_title_param($instance); $this->show_fields_id_param($instance); do_action('trx_addons_action_after_widget_fields', $instance, 'trx_addons_sow_widget_team'); } } // Load widget if (!function_exists('trx_addons_sow_widget_team_load')) { add_action( 'widgets_init', 'trx_addons_sow_widget_team_load' ); function trx_addons_sow_widget_team_load() { register_widget('TRX_Addons_SOW_Widget_Team'); } } } ?>