[ Avaa Bypassed ]




Upload:

Command:

hmhc3928@3.145.71.243: ~ $
<?php
/**
 * Thim_Builder Portfolio config class
 *
 * @version     1.0.0
 * @author      ThimPress
 * @package     Thim_Builder/Classes
 * @category    Classes
 * @author      Thimpress, tuanta
 */

/**
 * Prevent loading this file directly
 */
defined( 'ABSPATH' ) || exit;

if ( ! class_exists( 'Thim_Builder_Config_Portfolio' ) ) {
	/**
	 * Class Thim_Builder_Config_Portfolio
	 */
	class Thim_Builder_Config_Portfolio extends Thim_Builder_Abstract_Config {

		/**
		 * Thim_Builder_Config_Portfolio constructor.
		 */
		public function __construct() {
			// info
			self::$base = 'portfolio';
			self::$name = esc_html__( 'Thim: Portfolio', 'eduma' );
			self::$desc = esc_html__( 'Thim Widget Portfolio By thimpress.com', 'eduma' );
			self::$icon = 'thim-widget-icon thim-widget-icon-portfolio';
			parent::__construct();
		}

		/**
		 * @return array
		 */
		public function get_options() {

			// options
			return array(
				array(
					'type'       => 'dropdown',
					'heading'    => esc_html__( 'Select Category', 'eduma' ),
					'param_name' => 'portfolio_category',
					'value'      => thim_get_cat_taxonomy( 'portfolio_category', array( esc_html__( 'All', 'eduma' ) => 'all' ), true ),
					'std'        => 'all'
				),

				array(
					'type'        => 'checkbox',
					'admin_label' => true,
					'heading'     => esc_html__( 'Hide Filters?', 'eduma' ),
					'param_name'  => 'filter_hiden',
					//'value'       => array( esc_html__( '', 'eduma' ) => 'yes' ),
					'std'         => false,
				),

				array(
					'type'        => 'dropdown',
					'admin_label' => true,
					'heading'     => esc_html__( 'Select a filter position', 'eduma' ),
					'param_name'  => 'filter_position',
					'value'       => array(
						esc_html__( 'Left', 'eduma' )   => 'left',
						esc_html__( 'Center', 'eduma' ) => 'center',
						esc_html__( 'Right', 'eduma' )  => 'right',
					),
					'std'         => 'center'
				),

				array(
					'type'        => 'dropdown',
					'admin_label' => true,
					'heading'     => esc_html__( 'Select a column', 'eduma' ),
					'param_name'  => 'column',
					'value'       => array(
						esc_html__( 'Select', 'eduma' ) => '',
						esc_html__( 'One', 'eduma' )    => 'one',
						esc_html__( 'Two', 'eduma' )    => 'two',
						esc_html__( 'Three', 'eduma' )  => 'three',
						esc_html__( 'Four', 'eduma' )   => 'four',
						esc_html__( 'Five', 'eduma' )   => 'five',
					),
					'std'         => 'three'
				),

				array(
					'type'        => 'checkbox',
					'admin_label' => true,
					'heading'     => esc_html__( 'Gutter', 'eduma' ),
					'param_name'  => 'gutter',
					//'value'       => array( esc_html__( '', 'eduma' ) => 'yes' ),
					'std'         => false,
				),

				array(
					'type'        => 'dropdown',
					'admin_label' => true,
					'heading'     => esc_html__( 'Select a item size', 'eduma' ),
					'param_name'  => 'item_size',
					'value'       => array(
						esc_html__( 'Select', 'eduma' )    => '',
						esc_html__( 'Multigrid', 'eduma' ) => 'multigrid',
						esc_html__( 'Masonry', 'eduma' )   => 'masonry',
						esc_html__( 'Same size', 'eduma' ) => 'same',
					),
					'std'         => ''
				),

				array(
					'type'        => 'dropdown',
					'admin_label' => true,
					'heading'     => esc_html__( 'Select a paging', 'eduma' ),
					'param_name'  => 'paging',
					'value'       => array(
						esc_html__( 'Select', 'eduma' )          => '',
						esc_html__( 'Show All', 'eduma' )        => 'all',
						esc_html__( 'Limit Items', 'eduma' )     => 'limit',
						esc_html__( 'Paging', 'eduma' )          => 'paging',
						esc_html__( 'Infinite Scroll', 'eduma' ) => 'infinite_scroll',
					),
					'std'         => 'all'
				),

				array(
					'type'        => 'dropdown',
					'admin_label' => true,
					'heading'     => esc_html__( 'Select style items', 'eduma' ),
					'param_name'  => 'style-item',
					'value'       => array(
						esc_html__( 'Select', 'eduma' )                   => '',
						esc_html__( 'Caption Hover Effects 01', 'eduma' ) => 'style01',
						esc_html__( 'Caption Hover Effects 02', 'eduma' ) => 'style02',
						esc_html__( 'Caption Hover Effects 03', 'eduma' ) => 'style03',
						esc_html__( 'Caption Hover Effects 04', 'eduma' ) => 'style04',
						esc_html__( 'Caption Hover Effects 05', 'eduma' ) => 'style05',
						esc_html__( 'Caption Hover Effects 06', 'eduma' ) => 'style06',
						esc_html__( 'Caption Hover Effects 07', 'eduma' ) => 'style07',
						esc_html__( 'Caption Hover Effects 08', 'eduma' ) => 'style08',
					),
					'std'         => 'style01'
				),

				array(
					'type'        => 'textfield',
					'admin_label' => true,
					'heading'     => esc_html__( 'Enter a number view', 'eduma' ),
					'param_name'  => 'num_per_view',
					'value'       => '',
				),

				array(
					'type'        => 'checkbox',
					'admin_label' => true,
					'heading'     => esc_html__( 'Show Read More?', 'eduma' ),
					'param_name'  => 'show_readmore',
					'std'         => false,
				),
			);
		}

		public function get_template_name() {
			return 'base';
		}

	}
}

Filemanager

Name Type Size Permission Actions
tpl Folder 0755
class-so-portfolio.php File 642 B 0644
class-vc-portfolio.php File 701 B 0644
config.php File 4.99 KB 0644