%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /home/casasdemontanacr/www/wp-content/themes/enigma-premium/
Upload File :
Create Path :
Current File : /home/casasdemontanacr/www/wp-content/themes/enigma-premium/enigma-default-settings.php

<?php
function weblizar_default_settings()
{
	return $wl_theme_options=array(
			//Logo and Fevicon header			
			'upload_image_logo'=>'',
			'height'=>'50',
			'width'=>'180',
			'text_title'=>'off',
			'upload_image_favicon'=>'',
			'google_analytics' =>'',
			'custom_css'=>'',
			
			//Service
			'home_service_title'=>'Our Services',
			'service_column'=>'3',
			'no_of_service'=>'6',
			
			//Slider Settings
			'side_pause' =>'yes',
			'side_interval' => '5000',
			
			//slide portfolio
			'home_portfolio_title'=>'Our Portfolio',
			'portfolio_related_project_title'=>'Related Project',
			'portfolio_slide_duration' =>'1000',
			'portfolio_slide_timeoutduration' =>'1000',
			'portfolio_slide_item'=>'4',
			'light_box_style'=>'photobox_a',	
			
			//blog
			'home_blog_heading'=>'Recent News',
			'blog_slide_duration' =>'2000',
			'blog_slide_timeoutduration' =>'2000',
			'blog_slide_item'=>'3',
			
			//testimonial
			'home_testi_title'=>'What Our Client Say',
			'testi_slide_duration' =>'2000',
			'testi_slide_timeoutduration' =>'2000',
			'testi_slide_item'=>'1',
			
			//client
			'home_client_title'=>'Meet Our Greatest Partnery',
			'client_slide_duration' =>'2000',
			'client_slide_timeoutduration' =>'2000',
			'client_slide_item'=>'4',
			
			//call out
			'call_out_text' =>'Yepp! This is just a design for your awesome website and i am m sure you gona love',
			'call_out_link'=>'',
			'call_out_button_text'=>'MORE FEATURES',
			'call_out_button_target'=>'_blank',
			
			//skin_layout
			'style_sheet' =>'default.css',
			'header_position' =>'fixed',
			'layout_selector' =>'wide',
			'back_image' =>'bg_img1',
			'layout_type' =>'off',
			'custom_color_enbled'=>'off',
			'weblizar_custom_color'=>'#31A3DD',
			
			//Social media links
			'header_section_social_media_enbled'=>'on',
			'footer_section_social_media_enbled'=>'on',
			
			'twitter_link' => "https://twitter.com/",
			'facebook_link' => "https://facebook.com",
			'linkedin_link' => "http://linkedin.com/",
			'google_plus' => "https://plus.google.com/",
			'dribble_link' => "https://dribbble.com/",
			'youtube_link' => "https://www.youtube.com/",
			
			//contact settings
			'work_time_text' => 'Work Time',
			'work_time'=> 'Mon. - Fri. 10.00 - 22.00',
			'contact_heading' => "Get in touch with us",
			'contact_description' => "We care not only to create quality themes, but as well make sure users succeed to setup.",
			'general_info_text'=>'GENERAL INFO',
			'contact_email' => "lizarweb@gmail.com",
			'phone_number_text' =>'Phone Number',
			'contact_phone_no' => "48 880 450 120",
			'work_time_text' =>'Work Time',
			'work_time' =>'Mon. - Fri. 10.00 - 22.00',
			'where_we_are_text'=>'Where We are',
			'contact_address' => "128 New York USA",
			'google_map_on_contact'=>'on',
			'google_maps' => "https://maps.google.co.in/?ie=UTF8&ll=25.705888,76.871338&spn=1.217564,3.348083",

			//footer customization 
			'footer_customizations' => 'Copyright 2014 Enigma Theme',
			'developed_by_text' => ' Developed By',
			'developed_by_weblizar_text' => 'Weblizar',
			'developed_by_link' => 'http://weblizar.com/',
			
			//coming_soon
			'coming_soon' => 'off',
			'coming_soon_heading' => 'SITE IS UNDER CONSTRUCTION',
			'coming_soon_desc' => 'We are about to finish this Please come after a while..',
			'coming_soon_img' => '',
			
			//custom Link
			'cpt_slider' => 'enigma-slider',
			'cpt_service' => 'enigma-pervice',
			'cpt_portfolio' => 'enigma-portfolio',
			
			'home_page_layout'=>array('service','portfolio','blog','testimonial','client'),
			
		);
}


/*
* General Settings
*/

function reset_general_setting()
{
	$wl_theme_options = get_option('enigma_options_pro');
	$wl_theme_options['upload_image_logo']="";
	$wl_theme_options['height']=55;
	$wl_theme_options['width']=150;
	$wl_theme_options['upload_image_favicon']="";
	$wl_theme_options['text_title']="on";			
	$wl_theme_options['google_analytics']="";
	$wl_theme_options['custom_css']="";		
	update_option('enigma_options_pro',$wl_theme_options);
}

function reset_service_setting()
{
	//slide
	$wl_theme_options = get_option('enigma_options_pro');
	$wl_theme_options['home_service_title'] = 'Our Services';
	$wl_theme_options['service_column'] = '3';
	$wl_theme_options['no_of_service'] = '6';
	update_option('enigma_options_pro', $wl_theme_options);
}

//Slider Settings

function reset_slider_setting() {
		$wl_theme_options = get_option('enigma_options_pro');
		$wl_theme_options['side_pause'] ="yes";
		$wl_theme_options['side_interval'] ="5000";
		update_option('enigma_options_pro', $wl_theme_options);	
}
function reset_portfolio_setting()
{
	//Portfolio
	$wl_theme_options = get_option('enigma_options_pro');
	$wl_theme_options['home_portfolio_title'] = 'Our Portfolio';
	$wl_theme_options['portfolio_related_project_title'] = 'Related Project';
	$wl_theme_options['portfolio_slide_duration'] = '1000';
	$wl_theme_options['portfolio_slide_timeoutduration'] = '1000';
	$wl_theme_options['portfolio_slide_item'] = '4';
	$wl_theme_options['light_box_style'] = 'photobox_a';			
	update_option('enigma_options_pro',$wl_theme_options);
	
}

function reset_blog_setting()
{
	//blog
	$wl_theme_options = get_option('enigma_options_pro');
	$wl_theme_options['home_blog_heading'] = 'Recent News';
	$wl_theme_options['blog_slide_duration'] = '2000';
	$wl_theme_options['blog_slide_timeoutduration'] = '2000';
	$wl_theme_options['blog_slide_item'] = '3';
	update_option('enigma_options_pro', $wl_theme_options);
	
}

function reset_testi_setting()
{	
	//testimonial
	$wl_theme_options = get_option('enigma_options_pro');
	$wl_theme_options['home_testi_title'] ='What Our Client Say';
	$wl_theme_options['testi_slide_duration'] ='2000';
	$wl_theme_options['testi_slide_timeoutduration'] ='2000';
	$wl_theme_options['testi_slide_item'] ='1';
	update_option('enigma_options_pro', $wl_theme_options);
}
function reset_client_setting()
{	
	//client
	$wl_theme_options = get_option('enigma_options_pro');
	$wl_theme_options['home_client_title']='Meet Our Greatest Partnery';
	$wl_theme_options['client_slide_duration']='2000';
	$wl_theme_options['client_slide_timeoutduration']='2000';
	$wl_theme_options['client_slide_item']='4';
	update_option('enigma_options_pro', $wl_theme_options);
}

function reset_callout_setting()
{	
	//callout
	$wl_theme_options = get_option('enigma_options_pro');
	$wl_theme_options['call_out_text']='Yepp! This is just a design for your awesome website and i am sure you gona love';
	$wl_theme_options['call_out_link']='';
	$wl_theme_options['call_out_button_text']='MORE FEATURES';
	$wl_theme_options['call_out_button_target']='on';
	update_option('enigma_options_pro', $wl_theme_options);
}

function reset_skin_layout_setting()
{
	//skin_layout
	$wl_theme_options = get_option('enigma_options_pro');
	$wl_theme_options['style_sheet']='default.css';
	$wl_theme_options['header_position']='fixed';
	$wl_theme_options['layout_selector']='wide';
	$wl_theme_options['back_image']='bg_img1';
	$wl_theme_options['layout_type']= 'off';
	$wl_theme_options['custom_color_enbled']= 'off';
	$wl_theme_options['weblizar_custom_color']='#31A3DD';
	update_option('enigma_options_pro', $wl_theme_options);
}
/*
* social Settings
*/

function reset_social_setting()
{	$wl_theme_options = get_option('enigma_options_pro');
	$wl_theme_options['footer_section_social_media_enbled']="on";
	$wl_theme_options['header_section_social_media_enbled']="on";	
	
	$wl_theme_options['twitter_link']="https://twitter.com/";
	$wl_theme_options['facebook_link']="https://facebook.com/";
	$wl_theme_options['linkedin_link']="https://linkedin.com/";
	$wl_theme_options['google_plus']="https://plus.google.com/";
	$wl_theme_options['dribble_link']="https://plus.google.com/";
	$wl_theme_options['youtube_link']="https://plus.google.com/";	
	
	update_option('enigma_options_pro', $wl_theme_options);
}

/*
* footer customizations Settings
*/
function reset_footer_customizations_setting()
{	$wl_theme_options = get_option('enigma_options_pro');
	$wl_theme_options['footer_customizations']="@ 2014 Weblizar Theme";
	$wl_theme_options['developed_by_text']=" Developed By";
	$wl_theme_options['developed_by_weblizar_text']="Weblizar";
	$wl_theme_options['developed_by_link']="http://weblizar.com/";
	update_option('enigma_options_pro',$wl_theme_options);
}
/*
* Conatct Settings
*/

function reset_contact_details_setting()
{	$wl_theme_options = get_option('enigma_options_pro');
	$wl_theme_options['contact_heading'] = "Get in touch with us";
	$wl_theme_options['contact_description'] = "We care not only to create quality themes, but as well make sure users succeed to setup.";
	$wl_theme_options['general_info_text'] = "GENERAL INFO";
	$wl_theme_options['contact_email'] = "lizarweb@gmail.com";
	$wl_theme_options['phone_number_text'] = "Phone Number";
	$wl_theme_options['contact_phone_no'] = "48 880 450 120";
	$wl_theme_options['work_time_text'] = 'Work Time';
	$wl_theme_options['work_time'] = 'Mon. - Fri. 10.00 - 22.00';
	$wl_theme_options['where_we_are_text'] = "Where We are";
	$wl_theme_options['contact_address'] = "128 New York USA";
	$wl_theme_options['google_map_on_contact'] = 'on';
	$wl_theme_options['google_maps'] = "https://maps.google.co.in/?ie=UTF8&ll=25.705888,76.871338&spn=1.217564,3.348083";
	update_option('enigma_options_pro',$wl_theme_options);
}
/*
* coming soon settings
*/
function reset_coming_soon_setting()
{	$wl_theme_options = get_option('enigma_options_pro');
	$wl_theme_options['coming_soon']='off'; 
	$wl_theme_options['coming_soon_heading']='SITE IS UNDER CONSTRUCTION';
	$wl_theme_options['coming_soon_desc']='We are about to finish this Please come after a while..';
	$wl_theme_options['coming_soon_img']='';
	update_option('enigma_options_pro',$wl_theme_options);
}

//Custom Links Reset Function
function reset_cptlinks()
{	$wl_theme_options = get_option('enigma_options_pro');
	$wl_theme_options['cpt_slider']="Enigma-Slider";
	$wl_theme_options['cpt_service']="Enigma-Service";
	$wl_theme_options['cpt_portfolio']="Enigma-Portfolio";
	update_option('enigma_options_pro',$wl_theme_options);
}
?>

Zerion Mini Shell 1.0