Current File : /customers/3/5/c/campinoeksjo.se/httpd.www/wp-content/themes/MHreklam/options.php
<?php
/**
 * A unique identifier is defined to store the options in the database and reference them from the theme.
 */
function optionsframework_option_name() {

	// Change this to use your theme slug
	return 'options-framework-theme';
}

/**
 * Defines an array of options that will be used to generate the settings page and be saved in the database.
 * When creating the 'id' fields, make sure to use all lowercase and no spaces.
 *
 * If you are making your theme translatable, you should replace 'theme-textdomain'
 * with the actual text domain for your theme.  Read more:
 * http://codex.wordpress.org/Function_Reference/load_theme_textdomain
 */

function optionsframework_options() {

	// Test data
	$test_array = array(
		'one' => __( 'One', 'theme-textdomain' ),
		'two' => __( 'Two', 'theme-textdomain' ),
		'three' => __( 'Three', 'theme-textdomain' ),
		'four' => __( 'Four', 'theme-textdomain' ),
		'five' => __( 'Five', 'theme-textdomain' )
	);

	// Multicheck Array
	$multicheck_array = array(
		'one' => __( 'French Toast', 'theme-textdomain' ),
		'two' => __( 'Pancake', 'theme-textdomain' ),
		'three' => __( 'Omelette', 'theme-textdomain' ),
		'four' => __( 'Crepe', 'theme-textdomain' ),
		'five' => __( 'Waffle', 'theme-textdomain' )
	);

	// Multicheck Defaults
	$multicheck_defaults = array(
		'one' => '1',
		'five' => '1'
	);

	// Background Defaults
	$background_defaults = array(
		'color' => '',
		'image' => '',
		'repeat' => 'repeat',
		'position' => 'top center',
		'attachment'=>'scroll' );

	// Typography Defaults
	$typography_defaults = array(
		'size' => '15px',
		'face' => 'georgia',
		'style' => 'bold',
		'color' => '#bada55' );

	// Typography Options
	$typography_options = array(
		'sizes' => array( '6','12','14','16','20' ),
		'faces' => array( 'Helvetica Neue' => 'Helvetica Neue','Arial' => 'Arial' ),
		'styles' => array( 'normal' => 'Normal','bold' => 'Bold' ),
		'color' => false
	);

	// Pull all the categories into an array
	$options_categories = array();
	$options_categories_obj = get_categories();
	foreach ($options_categories_obj as $category) {
		$options_categories[$category->cat_ID] = $category->cat_name;
	}

	// Pull all tags into an array
	$options_tags = array();
	$options_tags_obj = get_tags();
	foreach ( $options_tags_obj as $tag ) {
		$options_tags[$tag->term_id] = $tag->name;
	}


	// Pull all the pages into an array
	$options_pages = array();
	$options_pages_obj = get_pages( 'sort_column=post_parent,menu_order' );
	$options_pages[''] = 'Select a page:';
	foreach ($options_pages_obj as $page) {
		$options_pages[$page->ID] = $page->post_title;
	}

	// If using image radio buttons, define a directory path
	$imagepath =  get_template_directory_uri() . '/images/';

	$options = array();

	$options[] = array(
		'name' => __( 'Basic Settings', 'themeoption_item' ),
		'type' => 'heading'
	);

	$options[] = array(
		'name' => __( 'Logo', 'themeoption_item' ),
		'desc' => __( 'Upload logo for site', 'themeoption_item' ),
		'id' => 'logo',
		'type' => 'upload'
	);
	
	$options[] = array(
		'name' => __( 'Footer Logo', 'themeoption_item' ),
		'desc' => __( 'Upload logo for site', 'themeoption_item' ),
		'id' => 'footer_logo',
		'type' => 'upload'
	);
	
	$options[] = array(
		'name' => __( 'Favicon', 'themeoption_item' ),
		'desc' => __( 'Upload favicon for site', 'themeoption_item' ),
		'id' => 'favicon',
		'type' => 'upload'
	);
	
	$options[] = array(
		'name' => __( 'Facebook Link', 'theme-textdomain' ),
		'id' => 'facebook_link',
		'type' => 'text'
	);
		$options[] = array(
		'name' => __( 'Twitter Link', 'theme-textdomain' ),
		'id' => 'twitter_link',
		'type' => 'text'
	);
	$options[] = array(
		'name' => __( 'Instagram Link', 'theme-textdomain' ),
		'id' => 'instagram_link',
		'type' => 'text'
	);
	
	$options[] = array(
		'name' => __( 'Youtube Link', 'theme-textdomain' ),
		'id' => 'youtube_link',
		'type' => 'text'
	);
	
	 
	
	$options[] = array(
		'name' => __( 'Copyright Text', 'theme-textdomain' ),
		'id' => 'copyright_text',
		'type' => 'textarea'
	);

	$options[] = array(
		'name' => __( 'Contents', 'theme-textdomain' ),
		'type' => 'heading'
	);

	$options[] = array(
		'name' => __( 'Ring Oss', 'theme-textdomain' ),
		'id' => 'call_us_numb',
		'type' => 'text'
	);

	$options[] = array(
		'name' => __( 'Footer Address', 'theme-textdomain' ),
		'id' => 'foote_address',
		'type' => 'text'
	);

	$options[] = array(
		'name' => __( 'Footer Phone text', 'theme-textdomain' ),
		'id' => 'footer_text',
		'type' => 'text'
	);

	$options[] = array(
		'name' => __( 'Footer Phone', 'theme-textdomain' ),
		'id' => 'footer_phone',
		'type' => 'text'
	);

	$options[] = array(
		'name' => __( 'Footer Opening Hours', 'theme-textdomain' ),
		'id' => 'footer_opening',
		'type' => 'editor',
		'settings' => $wp_editor_settings
	);
	
	
	
	/**
	 * For $settings options see:
	 * http://codex.wordpress.org/Function_Reference/wp_editor
	 *
	 * 'media_buttons' are not supported as there is no post to attach items to
	 * 'textarea_name' is set by the 'id' you choose
	 */

	$wp_editor_settings = array(
		'wpautop' => true, // Default
		'textarea_rows' => 5,
		'tinymce' => array( 'plugins' => 'wordpress' )
	);

	$options[] = array(
		'name' => __( 'Welcome Content', 'theme-textdomain' ),
		'id' => 'welcome_content',
		'type' => 'editor',
		'settings' => $wp_editor_settings
	);
	 

	return $options;
}
Campino Eksjö | Stans Bästa Pizzeria!
Välkommen

Vi Gör De Bästa Pizzorna i Stan!

Välkommen till Pizzeria Campino i Eksjö!
Här serverar vi pizza, kebab, sallad, a la carté och är belägna i hjärtat mitt i Eksjö Stad.

Vi har många års av erfarenhet i pizzabranschen och lovar er en härlig matupplevelse!
Självklart jobbar vi endast marknadens bästa råvaror, alltid det bästa för Campinos kunder.

/Campino

pizza_image

Pizzameny

             

Dagens Lunch 120:-

Måndag-Fredag 11.00 -14.00

VALFRI Maträtt inkl. dricka, Sallad, Bröd och Kaffe

Recensioner på Facebook

Så säger våra kunder om oss.

Kvalité

Vi jobbar endast med bra råvaror på Pizzeria Campino.

Snabbt & Bra

Hos oss går det undan, vi jobbar snabbt och effektivt.

Erfarenhet

Vi vet vad vi gör, vi har varit i branschen över 20år.

Allt från grunden.

På pizzeria Campino kör vi inte halvfabrikat, här gör vi allt från grunden.

Följ Oss på Sociala Medier

Gilla oss på Facebook

+