403Webshell
Server IP : 62.173.141.34  /  Your IP : 216.73.217.88
Web Server : Apache/2.4.63 (Ubuntu) mod_fcgid/2.3.9 OpenSSL/3.0.2
System : Linux server7.msonline.ru 5.15.0-179-generic #189-Ubuntu SMP Tue May 5 18:20:56 UTC 2026 x86_64
User : izihss ( 1005)
PHP Version : 7.4.33
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_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,exec,system,passthru,shell_exec,proc_open,popen
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : ON
Directory :  /home/izihss/web/izihss.ru/public_html/wp-content/themes/tempera/includes/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/izihss/web/izihss.ru/public_html/wp-content/themes/tempera/includes/theme-styles.php
<?php
/*
 * Styles and scripts registration and enqueuing
 *
 * @package tempera
 * @subpackage Functions
 */

// Adding the viewport meta if the mobile view has been enabled

function tempera_enqueue_styles() {
	global $temperas;
	extract($temperas);

	$gfonts = array();

	if( $tempera_mobile=="Enable" ) { 
		wp_register_style( 'tempera-mobile', get_template_directory_uri() . '/styles/style-mobile.css', NULL, _CRYOUT_THEME_VERSION ); 
	}
	if ( $tempera_frontpage=="Enable" ) { 
		wp_register_style( 'tempera-frontpage', get_template_directory_uri() . '/styles/style-frontpage.css', NULL, _CRYOUT_THEME_VERSION ); 
	}

	if ( $tempera_googlefont ) 			$gfonts[] = esc_attr( preg_replace( '/\s+/', '+', $tempera_googlefont 			) );
	if ( $tempera_googlefonttitle ) 	$gfonts[] = esc_attr( preg_replace( '/\s+/', '+', $tempera_googlefonttitle		) );
	if ( $tempera_googlefontside ) 		$gfonts[] = esc_attr( preg_replace( '/\s+/', '+', $tempera_googlefontside		) );
	if ( $tempera_headingsgooglefont )	$gfonts[] = esc_attr( preg_replace( '/\s+/', '+', $tempera_headingsgooglefont	) );
	if ( $tempera_sitetitlegooglefont )	$gfonts[] = esc_attr( preg_replace( '/\s+/', '+', $tempera_sitetitlegooglefont	) );
	if ( $tempera_menugooglefont ) 		$gfonts[] = esc_attr( preg_replace( '/\s+/', '+', $tempera_menugooglefont 		) );

	wp_enqueue_style( 'tempera-fonts', get_template_directory_uri() . '/fonts/fontfaces.css', NULL, _CRYOUT_THEME_VERSION );
	
	// enqueue fonts with subsets separately
	foreach ( $gfonts as $i=>$gfont ) {
		if (strpos($gfont,"&") === false):
		   // do nothing
		else:
			wp_enqueue_style( 'tempera-googlefont_'.$i, '//fonts.googleapis.com/css?family=' . $gfont );
			unset($gfonts[$i]);
		endif;
	} // foreach

	// merged fonts
	if ( count($gfonts)>0 ) {
		wp_enqueue_style( 'tempera-googlefonts', '//fonts.googleapis.com/css?family=' . implode( "|" , array_unique($gfonts) ), array(), null, 'screen' );
	};
	// main style
	wp_enqueue_style( 'tempera-style', get_stylesheet_uri(), NULL, _CRYOUT_THEME_VERSION );

	// rtl style
	if ( is_rtl() ) wp_enqueue_style( 'tempera-rtl', get_template_directory_uri() . '/styles/rtl.css', NULL, _CRYOUT_THEME_VERSION );
	
} // tempera_enqueue_styles()

if ( !is_admin() ) add_action( 'wp_head', 'tempera_enqueue_styles', 5 );

function tempera_styles_echo() {
	global $temperas;
	echo preg_replace("/[\n\r\t\s]+/", " ", tempera_custom_styles())."\n";
	if ( ($temperas['tempera_frontpage']=="Enable") && is_front_page() ) { echo preg_replace("/[\n\r\t\s]+/"," " , tempera_presentation_css()) . "\n"; }
	echo preg_replace("/[\n\r\t\s]+/", " ", tempera_customcss())."\n";
} // tempera_styles_echo()

add_action( 'wp_head', 'tempera_styles_echo', 20 );

function tempera_load_mobile_css() {
	global $temperas;
	if ($temperas['tempera_mobile']=="Enable") {
		echo "<link rel='stylesheet' id='tempera-style-mobile'  href='".get_template_directory_uri() . "/styles/style-mobile.css?ver=" . _CRYOUT_THEME_VERSION . "' type='text/css' media='all' />";
	}
} // tempera_load_mobile_css()
if ( !is_admin() ) add_action ('wp_head','tempera_load_mobile_css', 30);

// JS loading and hook into wp_enque_scripts
add_action('wp_footer', 'tempera_customjs', 35 );


// Scripts loading and hook into wp_enque_scripts
function tempera_scripts_method() {
	global $temperas;

	wp_enqueue_script('tempera-frontend', get_template_directory_uri() . '/js/frontend.js', array('jquery'), _CRYOUT_THEME_VERSION, true );

	if ($temperas['tempera_frontpage'] == "Enable" && is_front_page()) {
			// if PP and the current page is frontpage - load the nivo slider js
			wp_enqueue_script('tempera-nivoslider', get_template_directory_uri() . '/js/nivo.slider.min.js', array('jquery'), _CRYOUT_THEME_VERSION, true);
			// add slider init js in footer
			add_action('wp_footer', 'tempera_pp_slider' );
	}

	$js_options = array(
		//'masonry' => $temperas['tempera_masonry'],
		'mobile' => (($temperas['tempera_mobile']=='Enable')?1:0),
		'fitvids' => $temperas['tempera_fitvids'],
	);
	wp_localize_script( 'tempera-frontend', 'tempera_settings', $js_options );

	/* We add some JavaScript to pages with the comment form
	 * to support sites with threaded comments (when in use).
	 */
	if ( is_singular() && get_option( 'thread_comments' ) )
		wp_enqueue_script( 'comment-reply' );

} // tempera_scripts_method()

if ( !is_admin() ) add_action('wp_enqueue_scripts', 'tempera_scripts_method'); 

/*
 * tempera_custom_editor_styles() is located in custom-styles.php
 */
function tempera_add_editor_styles() {
	add_editor_style( add_query_arg( 'action', 'tempera_editor_styles', admin_url( 'admin-ajax.php' ) ) );
	add_action( 'wp_ajax_tempera_editor_styles', 'tempera_editor_styles' );
	add_action( 'wp_ajax_no_priv_tempera_editor_styles', 'tempera_editor_styles' );
} // tempera_add_editor_styles()
if ( is_admin() && $temperas['tempera_editorstyle'] ) tempera_add_editor_styles();

// FIN

Youez - 2016 - github.com/yon3zu
LinuXploit