Spamworldpro Mini Shell
Spamworldpro


Server : nginx/1.20.1
System : Linux ccpf-production-2021 5.4.0-148-generic #165-Ubuntu SMP Tue Apr 18 08:53:12 UTC 2023 x86_64
User : forge ( 1000)
PHP Version : 7.4.21
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Directory :  /home/forge/gcc-ccpf.com/wp-content/themes/labora-child/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/forge/gcc-ccpf.com/wp-content/themes/labora-child/functions.php
<?php
function labora_child_scripts( $file ) {
	$child_file = str_replace( get_template_directory_uri(), get_stylesheet_directory_uri(), $file );
	return( $child_file );
}
/**
 * Enqueue the files in child theme
 * If you wish to change any js file or css file then use 'labora_child_scripts' function for that specific file and place it in relevant folder.
 * for eg:wp_register_script('iva-countTo', labora_child_scripts(THEME_JS . '/jquery.countTo.js'), 'jquery','1.0','in_footer'); 
 */
function labora_child_require_file( $file ) {
	$child_file = str_replace( get_template_directory(), get_stylesheet_directory(), $file );
	if ( file_exists( $child_file ) ) {
		return( $child_file );
	} else {
		return( $file );
	}
}
/**
 * Register and enqueue scripts.
 */
if ( ! function_exists( 'labora_theme_enqueue_scripts' ) ) {
	function labora_theme_enqueue_scripts() {

		$labora_theme_data	= wp_get_theme();
		$labora_theme_version = $labora_theme_data->get( 'Version' );

		global $post;

		// Enqueue scripts.
		wp_enqueue_script( 'hoverintent', LABORA_THEME_JS . '/hoverIntent.js',array( 'jquery' ),'', true );
		wp_enqueue_script( 'superfish', LABORA_THEME_JS . '/superfish.js',array( 'jquery' ),'',true );

		if ( is_singular( 'gallery' ) || ( is_a( $post, 'WP_Post' ) && has_shortcode( $post->post_content, 'gallery' ) )  || is_page_template( 'template-blog.php' ) ) {
			wp_enqueue_script( 'prettyphoto', LABORA_THEME_JS . '/jquery.prettyPhoto.js','','',true );
			wp_enqueue_style( 'prettyphoto', LABORA_THEME_CSS . '/prettyPhoto.css', array(), $labora_theme_version, false );
		}
		wp_enqueue_script( 'labora-customjs', LABORA_THEME_JS . '/labora-custom.js', array( 'jquery' ), $labora_theme_version , true );

		// AJAX URL
		$labora_data['ajaxurl'] = admin_url( 'admin-ajax.php' );

		// HOME URL
		$labora_data['home_url'] = get_home_url();

		// Directory URI
		$labora_data['directory_uri'] = get_template_directory_uri();

		// Pass data to javascript
		$labora_params = array(
			'l10n_print_after' => 'labora_localize_script_param = ' . wp_json_encode( $labora_data ) . ';',
		);
		wp_localize_script( 'jquery', 'labora_localize_script_param', $labora_params );

		/**
		 * enqueue styles.
		 */
		wp_enqueue_style( 'labora_parent_style', get_template_directory_uri() . '/style.css' );
		wp_enqueue_style( 'labora_child_style',
		    get_stylesheet_directory_uri() . '/style.css',
		    array('labora_parent_style')
		);
		wp_enqueue_style( 'font-awesome', LABORA_THEME_CSS . '/fontawesome/css/font-awesome.min.css' );
		wp_enqueue_style( 'labora-responsive', LABORA_THEME_CSS . '/responsive.css',$labora_theme_version, 'all' );
	}
	add_action( 'wp_enqueue_scripts','labora_theme_enqueue_scripts' );
}
/**
 * Flex Slider Enqueue Scripts
 */
if ( ! function_exists( 'labora_flexslider_enqueue_scripts' ) ) {
	add_action( 'labora_theme_flexslider','labora_flexslider_enqueue_scripts' );
	function labora_flexslider_enqueue_scripts() {
		$fs_slidespeed 	 = get_option( 'labora_flexslidespeed' ) ? get_option( 'labora_flexslidespeed' ) : '3000';
		$fs_slideeffect  = get_option( 'labora_flexslideeffect' ) ? get_option( 'labora_flexslideeffect' ) : 'fade';
		$fs_slidednav	 = get_option( 'labora_flexslidednav' ) ? get_option( 'labora_flexslidednav' ) : 'true';
		$flexslider_args = array(
								'slideeffect' => $fs_slideeffect,
								'slidespeed'  => $fs_slidespeed,
								'slidednav'	  => $fs_slidednav,
							);
		wp_enqueue_script( 'flexslider', LABORA_THEME_JS . '/jquery.flexslider-min.js', array( 'jquery' ), '', true );
		wp_localize_script( 'flexslider', 'flexslider_args', $flexslider_args );
		wp_enqueue_style( 'flexslider-style', LABORA_THEME_CSS . '/flexslider.css' );
	}
}

/**
 * Theme Class
 */
 if ( ! class_exists( 'Labora_Theme_Functions' ) ) {
 	class Labora_Theme_Functions {
		public $labora_meta_box;
		public function __construct() {
			$this->labora_theme_constants();
			$this->labora_theme_support();
			$this->labora_theme_admin_scripts();
			$this->labora_theme_admin_interface();
			$this->labora_theme_custom_widgets();
			$this->labora_theme_custom_meta();
			$this->labora_theme_meta_generator();
			$this->labora_theme_extras();
		}

		function labora_theme_constants() {

			/**
			 * Set the file path based on whether the Options
			 * Framework is in a parent theme or child theme
			 * Directory Structure
			 */

			$labora_theme_data	= wp_get_theme();
			$labora_theme_name = $labora_theme_data->get( 'Name' );

			define( 'LABORA_FRAMEWORK', '2.0' );
			define( 'LABORA_THEME_NAME', $labora_theme_name );
			define( 'LABORA_THEME_URI', get_template_directory_uri() );
			define( 'LABORA_THEME_DIR', get_template_directory() );
			define( 'LABORA_THEME_JS', LABORA_THEME_URI . '/js' );
			define( 'LABORA_THEME_CSS', LABORA_THEME_URI . '/css' );
			define( 'LABORA_FRAMEWORK_DIR', LABORA_THEME_DIR . '/framework/' );
			define( 'LABORA_FRAMEWORK_URI', LABORA_THEME_URI . '/framework/' );
			define( 'LABORA_ADMIN_URI',  LABORA_FRAMEWORK_URI . 'admin' );
			define( 'LABORA_ADMIN_DIR',  LABORA_FRAMEWORK_DIR . 'admin' );
			define( 'LABORA_THEME_WIDGETS',  LABORA_FRAMEWORK_DIR . 'widgets/' );
			define( 'LABORA_THEME_CUSTOM_META',  LABORA_FRAMEWORK_DIR . 'custom-meta/' );
		}
		/**
		 * allows a theme to register its support of a certain features
		 */
		function labora_theme_support() {

			add_theme_support( 'post-formats', array(
				'aside',
				'audio',
				'link',
				'image',
				'gallery',
				'quote',
				'status',
				'video',
				'event',
			));
			add_theme_support( 'post-thumbnails' );
			add_theme_support( 'automatic-feed-links' );
			add_editor_style( 'editor-style.css' );
			add_theme_support( 'title-tag' );
			add_theme_support( 'menus' );

			// Register menu.
			register_nav_menus( array(
				'primary-menu' => esc_html__( 'Primary Menu', 'labora' ),
			));


			// Define content width.
			if ( ! isset( $content_width ) ) {
				$content_width = 1100;
			}
		}
		/**
		 * scripts and styles enqueue .
		 */
		function labora_theme_admin_scripts() {
			$this->child_require_once( LABORA_FRAMEWORK_DIR . 'common/admin-scripts.php' );
		}
		/**
		 * Admin interface .
		 */
		function labora_theme_admin_interface() {
			$this->child_require_once( LABORA_FRAMEWORK_DIR . 'common/iva-googlefont.php' );
			$this->child_require_once( LABORA_FRAMEWORK_DIR . 'admin/admin-interface.php' );
			$this->child_require_once( LABORA_FRAMEWORK_DIR . 'admin/theme-options.php' );
		}
		/**
		 * Widgets .
		 */
		function labora_theme_custom_widgets() {
			$this->child_require_once( LABORA_THEME_WIDGETS . '/register-widget.php' );
			$this->child_require_once( LABORA_THEME_WIDGETS . '/iva-wg-contactinfo.php' );
			$this->child_require_once( LABORA_THEME_WIDGETS . '/iva-wg-sociable.php' );
			$this->child_require_once( LABORA_THEME_WIDGETS . '/iva-wg-recentpost.php' );
			$this->child_require_once( LABORA_THEME_WIDGETS . '/iva-wg-icon-box.php' );
			$this->child_require_once( LABORA_THEME_WIDGETS . '/iva-wg-button.php' );
		}
		/** load meta generator templates
		 * @files slider, Menus, page, posts,
		 */
		function LABORA_THEME_CUSTOM_META() {
			$this->child_require_once( LABORA_THEME_CUSTOM_META . '/page-meta.php' );
			$this->child_require_once( LABORA_THEME_CUSTOM_META . '/post-meta.php' );
			$this->child_require_once( LABORA_THEME_CUSTOM_META . '/slider-meta.php' );
			$this->child_require_once( LABORA_THEME_CUSTOM_META . '/testimonial-meta.php' );
			$this->child_require_once( LABORA_THEME_CUSTOM_META . '/gallery-meta.php' );
		}

		function labora_theme_meta_generator() {
			$this->child_require_once( LABORA_THEME_CUSTOM_META . '/meta-generator.php' );
		}

		/**
		 * Theme functions
		 * @uses skin generat$this->child_require_once(or
		 * @uses pagination
		 * @uses sociables
		 * @uses Aqua imageresize // Credits : http://aquagraphite.com/
		 * @uses plugin activation class
		 */
		function labora_theme_extras() {
			$this->child_require_once( LABORA_THEME_DIR . '/css/skin.php' );
			$this->child_require_once( LABORA_FRAMEWORK_DIR . 'includes/mega-menu.php' );
			$this->child_require_once( LABORA_FRAMEWORK_DIR . 'common/iva-generator.php' );
			$this->child_require_once( LABORA_FRAMEWORK_DIR . 'includes/image-resize.php' );
			$this->child_require_once( LABORA_FRAMEWORK_DIR . 'includes/class-activation.php' );
		}
		
		
		function child_require_once( $file ) {
			$child_file = str_replace(get_template_directory(), get_stylesheet_directory(), $file );
			if ( file_exists( $child_file ) ) {
				require_once( $child_file );
			} else {
				require_once( $file );
			}
		}
		
		/**
		 * Custom switch case for fetching
		 * posts, post-types, custom-taxonomies, tags
		 */
		 function labora_get_vars( $type ) {
			$labora_tax_options = array();
			switch ( $type ) {
				/**
				 * Get page titles.
				 */
				case 'pages':
					$labora_get_pages = get_pages( 'sort_column=post_parent,menu_order' );
					if ( ! empty( $labora_get_pages ) && ! is_wp_error( $labora_get_pages ) ) {
						foreach ( $labora_get_pages as $page ) {
							$labora_tax_options[ $page->ID ] = $page->post_title;
						}
					}
					break;
				/**
				 * Get slider slug and name.
				 */
				case 'slider':
					$labora_slider_cats = get_terms( 'slider_cat', 'orderby=name&hide_empty=0' );
					if ( ! empty( $labora_slider_cats ) && ! is_wp_error( $labora_slider_cats ) ) {
						foreach ( $labora_slider_cats as $slider ) {
							$labora_tax_options[ $slider->slug ] = $slider->name;
						}
					}
					break;

				/**
				 * Get posts slug and name.
				 */
				case 'posts':
					$labora_post_cats = get_categories( 'hide_empty=0' );
					if ( ! empty( $labora_post_cats ) && ! is_wp_error( $labora_post_cats ) ) {
						foreach ( $labora_post_cats as $cat ) {
							$labora_tax_options[ $cat->slug ] = $cat->name;
						}
					}
					break;

				/**
				 * Get categories slug and name.
				 */
				case 'categories':
					$labora_post_cats = get_categories( 'hide_empty=true' );
					if ( ! empty( $labora_post_cats ) && ! is_wp_error( $labora_post_cats ) ) {
						foreach ( $labora_post_cats as $cat ) {
							$labora_tax_options[ $cat->term_id ] = $cat->name;
						}
					}
					break;

				/**
				 * Get taxonomy tags.
				 */
				case 'tags':
					$labora_tags = get_tags(array(
						'taxonomy' => 'post_tag',
					) );
					if ( ! empty( $labora_tags ) && ! is_wp_error( $labora_tags ) ) {
						foreach ( $labora_tags as $tags ) {
							$labora_tax_options[ $tags->slug ] = $tags->name;
						}
					}
					break;

				/**
				 * Slider arrays for theme options.
				 */
				case 'slider_type':
					$labora_tax_options = array(
						'' 				=> esc_html__( 'Select Slider', 'labora' ),
						'flexslider' 	=> esc_html__( 'Flex Slider', 'labora' ),
						'static_image' 	=> esc_html__( 'Static Image', 'labora' ),
						'customslider'	=> esc_html__( 'Custom Slider', 'labora' ),
					);
					break;
			}

			return $labora_tax_options;
		}
	}
}
/**
 * Section to decide whether use child theme or parent theme 
 */
if ( ! defined('LABORA_NICHE_DIR') ) {
	define( 'LABORA_NICHE_DIR', labora_child_require_file( get_template_directory() . '/labora-niche/') );
}

Spamworldpro Mini