Example #1
1
    /**
     * PRINT Muffin Builder
     * 
     * Main function
     * 
     * @global $post
     */
    function mfn_builder_show()
    {
        global $post;
        // Visibility -------------------------------------------------------------------
        if ($visibility = mfn_opts_get('builder-visibility')) {
            if ($visibility == 'hide' || !current_user_can($visibility)) {
                return false;
            }
        }
        // GET | Muffin Items - $mfn_items ----------------------------------------------
        $mfn_items = get_post_meta($post->ID, 'mfn-page-items', true);
        // 		print_r( $mfn_items );
        // FIX | Muffin Builder 2.0 Compatibility
        if ($mfn_items && !is_array($mfn_items)) {
            $mfn_items = unserialize(base64_decode($mfn_items));
        }
        // Debug ------------------------------------------------------------------------
        // 		print_r( $mfn_items );
        // ID | sections, wraps ------------------------------------------------------
        $section_id = 1;
        $wrap_id = 1;
        ?>
		<div id="mfn-builder">
		
			<input type="hidden" name="mfn-items-save" value="1"/>
			
			<a id="mfn-go-to-top" class="dashicons dashicons-arrow-up-alt" href="javascript:void(0);"></a>

			<div id="mfn-content">
	
	
				<!-- Header | Add Section ___________________________________________ -->		
				<div class="mfn-row-add">
					<table class="form-table">
						<tbody>
							<tr valign="top">
								<td>
									<a class="mfn-row-add-btn" href="javascript:void(0);">
										<span class="dashicons dashicons-align-center"></span>
										<?php 
        _e('Add Section', 'mfn-opts');
        ?>
									</a>
									<div class="logo">Muffin Group | Muffin Builder</div>
								</td>
							</tr>
						</tbody>
					</table>
				</div>
				

				<!-- Builder Desktop ________________________________________________ -->
				<div id="mfn-desk" class="clearfix">	
					<?php 
        if (is_array($mfn_items)) {
            foreach ($mfn_items as $section) {
                mfn_builder_section($section, $section_id, $wrap_id);
                $section_id++;
            }
        }
        ?>
				
				</div>
				
				
				<!-- New | Section __________________________________________________ -->
				<div id="mfn-rows" class="clearfix">
					<?php 
        mfn_builder_section();
        ?>
				</div>
				
				
				<!-- New | Wrap _____________________________________________________ -->
				<div id="mfn-wraps" class="clearfix">
					<?php 
        mfn_builder_wrap();
        ?>
				</div>
							
				
				<!-- New | Items ____________________________________________________ -->
				<div id="mfn-items" class="clearfix">
					<?php 
        $items = mfn_get_fields_item();
        foreach ($items as $item) {
            mfn_builder_item($item['type']);
            echo "\n";
        }
        ?>
				
				</div>
				
				
				<!-- Popup | Add Item ______________________________________________ -->		
				<div id="mfn-item-add" class="mfn-popup mfn-popup-item-add">
					<div class="mfn-popup-inside">
			
						<div class="mfn-popup-header">
	
							<div class="mfn-ph-left">
								<span class="mfn-ph-btn mfn-ph-desc"><?php 
        _e('Add Item', 'mfn-opts');
        ?>
</span>						
							</div>
							
							<div class="mfn-ph-right">			
								<a class="mfn-ph-btn mfn-ph-close dashicons dashicons-no" title="<?php 
        _e('Close', 'mfn-opts');
        ?>
" href="javascript:void(0);"></a>
							</div>
	
						</div>
						
						<div class="mfn-popup-content">
						
							<div class="mfn-popup-subheader">
							
								<ul class="mfn-popup-tabs">
									<li data-filter="*" class="active"><a href="javascript:void(0);"><?php 
        _e('All', 'mfn-opts');
        ?>
</a></li>
									<li data-filter="typography"><a href="javascript:void(0);"><?php 
        _e('Typography', 'mfn-opts');
        ?>
</a></li>
									<li data-filter="boxes"><a href="javascript:void(0);"><?php 
        _e('Boxes & Infographics', 'mfn-opts');
        ?>
</a></li>
									<li data-filter="blocks"><a href="javascript:void(0);"><?php 
        _e('Content Blocks', 'mfn-opts');
        ?>
</a></li>
									<li data-filter="elements"><a href="javascript:void(0);"><?php 
        _e('Content Elements', 'mfn-opts');
        ?>
</a></li>
									<li data-filter="loops"><a href="javascript:void(0);"><?php 
        _e('Loops', 'mfn-opts');
        ?>
</a></li>
									<li data-filter="other"><a href="javascript:void(0);"><?php 
        _e('Other', 'mfn-opts');
        ?>
</a></li>
								</ul>
								
								<div class="mfn-popup-search">
									<span class="dashicons dashicons-search"></span>
									<input class="mfn-search-item" placeholder="<?php 
        _e('Search Item', 'mfn-opts');
        ?>
" />
								</div>
							
							</div>
						
							<ul class="mfn-popup-items clear">
								<?php 
        $items = mfn_get_fields_item();
        foreach ($items as $item) {
            $category = isset($item['cat']) ? 'category-' . $item['cat'] : '';
            echo '<li class="mfn-item-' . $item['type'] . ' ' . $category . '" data-type="' . $item['type'] . '">';
            echo '<a data-type="' . $item['type'] . '" href="javascript:void(0);">';
            echo '<span class="title">' . $item['title'] . '</span>';
            echo '<div class="mfn-item-icon"></div>';
            echo '</a>';
            echo '</li>';
        }
        ?>
							</ul>
							
						</div>
						
					</div>
				</div>	
				
				
				<!-- Migrate _______________________________________________________ -->
				<div id="mfn-migrate">

					<div class="btn-wrapper">
						<a href="javascript:void(0);" class="mfn-btn-migrate btn-exp"><?php 
        _e('Export', 'mfn-opts');
        ?>
</a>
						<a href="javascript:void(0);" class="mfn-btn-migrate btn-imp"><?php 
        _e('Import', 'mfn-opts');
        ?>
</a>
						<a href="javascript:void(0);" class="mfn-btn-migrate btn-tem btn-primary"><?php 
        _e('Templates', 'mfn-opts');
        ?>
</a>
					</div>
					<div class="migrate-wrapper export-wrapper hide">
						<textarea id="mfn-items-export" placeholder="Please remember to Publish/Update your post before Export."><?php 
        echo get_post_meta($post->ID, 'mfn-page-items', true);
        ?>
</textarea>
						<span class="description"><?php 
        _e('Copy to clipboard: Ctrl+C (Cmd+C for Mac)', 'mfn-opts');
        ?>
</span>
					</div>
					
					<div class="migrate-wrapper import-wrapper hide">
						<textarea id="mfn-items-import" placeholder="Paste import data here."></textarea>
						<a href="javascript:void(0);" class="mfn-btn-migrate btn-primary btn-import"><?php 
        _e('Import', 'mfn-opts');
        ?>
</a>	
						<select name="mfn-items-import-type">
							<option value="replace"><?php 
        _e('REPLACE current builder content', 'mfn-opts');
        ?>
</option>
							<option value="before"><?php 
        _e('Insert BEFORE current builder content', 'mfn-opts');
        ?>
</option>
							<option value="after"><?php 
        _e('Insert AFTER current builder content', 'mfn-opts');
        ?>
</option>
						</select>			
					</div>
					
					<div class="migrate-wrapper templates-wrapper hide">
						<a href="javascript:void(0);" class="mfn-btn-migrate btn-primary btn-template"><?php 
        _e('Use Template', 'mfn-opts');
        ?>
</a>	
						<select name="mfn-items-import-template-type">
							<option value="replace"><?php 
        _e('REPLACE current builder content', 'mfn-opts');
        ?>
</option>
							<option value="before"><?php 
        _e('Insert BEFORE current builder content', 'mfn-opts');
        ?>
</option>
							<option value="after"><?php 
        _e('Insert AFTER current builder content', 'mfn-opts');
        ?>
</option>
						</select>
						<select id="mfn-items-import-template">
							<option value=""><?php 
        _e('-- Select --', 'mfn-opts');
        ?>
</option>
							<?php 
        $args = array('post_type' => 'template', 'posts_per_page' => -1);
        $templates = get_posts($args);
        if (is_array($templates)) {
            foreach ($templates as $v) {
                echo '<option value="' . $v->ID . '">' . $v->post_title . '</options>';
            }
        }
        ?>
						</select>					
					</div>
					
				</div>
				
		
			</div>
			
			
			<!-- #mfn-items-seo -->
			<div id="mfn-items-seo">
				<?php 
        $mfn_items_seo = get_post_meta($post->ID, 'mfn-page-items-seo', true);
        echo '<textarea id="mfn-items-seo-data">' . $mfn_items_seo . '</textarea>';
        ?>
			</div>
				
			
			<input type="hidden" id="mfn-row-id" value="<?php 
        echo $section_id;
        ?>
"/>
			<input type="hidden" id="mfn-wrap-id" value="<?php 
        echo $wrap_id;
        ?>
"/>

		</div>
		<?php 
    }
    function mfn_builder_show()
    {
        global $post;
        // Entrance Animations -----------------------------------------------------------------------------
        $mfn_animate = array('' => __('- Not Animated -', 'mfn-opts'), 'fadeIn' => __('Fade In', 'mfn-opts'), 'fadeInUp' => __('Fade In Up', 'mfn-opts'), 'fadeInDown' => __('Fade In Down ', 'mfn-opts'), 'fadeInLeft' => __('Fade In Left', 'mfn-opts'), 'fadeInRight' => __('Fade In Right ', 'mfn-opts'), 'fadeInUpLarge' => __('Fade In Up Large', 'mfn-opts'), 'fadeInDownLarge' => __('Fade In Down Large', 'mfn-opts'), 'fadeInLeftLarge' => __('Fade In Left Large', 'mfn-opts'), 'fadeInRightLarge' => __('Fade In Right Large', 'mfn-opts'), 'zoomIn' => __('Zoom In', 'mfn-opts'), 'zoomInUp' => __('Zoom In Up', 'mfn-opts'), 'zoomInDown' => __('Zoom In Down', 'mfn-opts'), 'zoomInLeft' => __('Zoom In Left', 'mfn-opts'), 'zoomInRight' => __('Zoom In Right', 'mfn-opts'), 'zoomInUpLarge' => __('Zoom In Up Large', 'mfn-opts'), 'zoomInDownLarge' => __('Zoom In Down Large', 'mfn-opts'), 'zoomInLeftLarge' => __('Zoom In Left Large', 'mfn-opts'), 'bounceIn' => __('Bounce In', 'mfn-opts'), 'bounceInUp' => __('Bounce In Up', 'mfn-opts'), 'bounceInDown' => __('Bounce In Down', 'mfn-opts'), 'bounceInLeft' => __('Bounce In Left', 'mfn-opts'), 'bounceInRight' => __('Bounce In Right', 'mfn-opts'));
        // Section Attributes ------------------------------------------------------------------------------
        $mfn_std_section = array(array('id' => 'title', 'type' => 'text', 'title' => __('Title', 'mfn-opts'), 'desc' => __('This field is used as an Section Label in admin panel only and shows after page update', 'mfn-opts')), array('id' => 'bg_color', 'type' => 'text', 'title' => __('Background | Color', 'mfn-opts'), 'desc' => __('Use color name ( gray ) or hex ( #808080 ). Leave this field blank if you want to use transparent background', 'mfn-opts'), 'class' => 'small-text', 'std' => ''), array('id' => 'bg_image', 'type' => 'upload', 'title' => __('Background | Image', 'mfn-opts')), array('id' => 'bg_position', 'type' => 'select', 'title' => __('Background | Image position', 'mfn-opts'), 'desc' => __('This option can be used only with your custom image selected above', 'mfn-opts'), 'options' => mfna_bg_position(), 'std' => 'center top no-repeat'), array('id' => 'bg_video_mp4', 'type' => 'upload', 'title' => __('Background | Video HTML5', 'mfn-opts'), 'sub_desc' => __('m4v [.mp4]', 'mfn-opts'), 'desc' => __('Please add both mp4 and ogv for cross-browser compatibility. Background Image will be used as video placeholder before video loads and on mobile devices', 'mfn-opts'), 'class' => __('video', 'mfn-opts')), array('id' => 'bg_video_ogv', 'type' => 'upload', 'title' => __('Background | Video HTML5', 'mfn-opts'), 'sub_desc' => __('ogg [.ogv]', 'mfn-opts'), 'class' => __('video', 'mfn-opts')), array('id' => 'column_margin', 'type' => 'select', 'title' => __('Margin | Inner Columns', 'mfn-opts'), 'sub_desc' => __('Inner Columns Margin Bottom', 'mfn-opts'), 'options' => array('' => '-- Default --', '0px' => '0px', '10px' => '10px', '20px' => '20px', '30px' => '30px', '40px' => '40px', '50px' => '50px')), array('id' => 'padding_top', 'type' => 'text', 'title' => __('Padding | Top', 'mfn-opts'), 'sub_desc' => __('Section Padding Top', 'mfn-opts'), 'desc' => __('px', 'mfn-opts'), 'class' => 'small-text', 'std' => '0'), array('id' => 'padding_bottom', 'type' => 'text', 'title' => __('Padding | Bottom', 'mfn-opts'), 'sub_desc' => __('Section Padding Bottom', 'mfn-opts'), 'desc' => __('px', 'mfn-opts'), 'class' => 'small-text', 'std' => '0'), array('id' => 'divider', 'type' => 'select', 'title' => __('Separator', 'mfn-opts'), 'sub_desc' => __('Section Separator', 'mfn-opts'), 'desc' => __('Works only with Background Color selected above.', 'mfn-opts'), 'options' => array('' => 'None', 'circle up' => 'Circle Up', 'circle down' => 'Circle Down', 'square up' => 'Square Up', 'square down' => 'Square Down', 'triangle up' => 'Triangle Up', 'triangle down' => 'Triangle Down', 'triple-triangle up' => 'Triple Triangle Up', 'triple-triangle down' => 'Triple Triangle Down')), array('id' => 'layout', 'type' => 'select', 'title' => __('Sidebar | Layout', 'mfn-opts'), 'sub_desc' => __('Select layout for this section', 'mfn-opts'), 'desc' => __('<strong>Notice:</strong> Sidebar for section will show <strong>only</strong> if you set Full Width Page Layout in Page Options below Content Builder', 'mfn-opts'), 'options' => array('no-sidebar' => 'Full width. No sidebar', 'left-sidebar' => 'Left Sidebar', 'right-sidebar' => 'Right Sidebar'), 'std' => 'no-sidebar'), array('id' => 'sidebar', 'type' => 'select', 'title' => __('Sidebar | Select', 'mfn-opts'), 'sub_desc' => __('Select sidebar for this section', 'mfn-opts'), 'options' => mfn_opts_get('sidebars')), array('id' => 'navigation', 'type' => 'select', 'title' => __('Navigation', 'mfn-opts'), 'options' => array('' => 'None', 'arrows' => 'Arrows')), array('id' => 'style', 'type' => 'select', 'title' => __('Style', 'mfn-opts'), 'sub_desc' => __('Predefined styles for section', 'mfn-opts'), 'desc' => __('For more advanced styles please use Custom CSS field below', 'mfn-opts'), 'options' => array('' => '-- Default --', 'no-margin-h' => 'Columns without Horizontal margins | no-margin-h', 'no-margin' => 'Columns without Vertical margin | no-margin-v', 'no-margin-h no-margin-v' => 'Columns without Any margins | no-margin-h no-margin-v', 'dark' => 'Dark | dark', 'equal-height' => 'Equal Height of Columns | equal-height', 'full-screen' => 'Full Screen | full-screen', 'full-width' => 'Full Width | full-width', 'full-width no-margin-h no-margin-v' => 'Full Width without margins | full-width no-margin-h no-margin-v', 'highlight-left' => 'Highlight Left | highlight-left', 'highlight-right' => 'Highlight Right | highlight-right')), array('id' => 'class', 'type' => 'text', 'title' => __('Custom | Classes', 'mfn-opts'), 'desc' => __('Multiple classes should be separated with SPACE. For sections with centered text you can use class: <strong>center</strong>', 'mfn-opts')), array('id' => 'section_id', 'type' => 'text', 'title' => __('Custom | ID', 'mfn-opts'), 'desc' => __('Use this option to create One Page sites. For example: Your Custom ID is <strong>offer</strong> and you want to open this section, please use link: <strong>your-url/#offer</strong>', 'mfn-opts'), 'class' => 'small-text'), array('id' => 'visibility', 'type' => 'select', 'title' => __('Responsive Visibility', 'mfn-opts'), 'options' => array('' => '-- Default --', 'hide-desktop' => 'Hide on Desktop | 960px +', 'hide-tablet' => 'Hide on Tablet | 768px - 959px', 'hide-mobile' => 'Hide on Mobile | - 768px', 'hide-desktop hide-tablet' => 'Hide on Desktop & Tablet', 'hide-desktop hide-mobile' => 'Hide on Desktop & Mobile', 'hide-tablet hide-mobile' => 'Hide on Tablet & Mobile')));
        // Default Items with Fields -----------------------------------------------------------------------------
        $mfn_std_items = array('placeholder' => array('type' => 'placeholder', 'title' => __('- Placeholder -', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'info', 'type' => 'info', 'desc' => __('This is Muffin Builder Placeholder.', 'nhp-opts')))), 'accordion' => array('type' => 'accordion', 'title' => __('Accordion', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'title', 'type' => 'text', 'title' => __('Title', 'mfn-opts')), array('id' => 'tabs', 'type' => 'tabs', 'title' => __('Accordion', 'mfn-opts'), 'sub_desc' => __('Manage accordion tabs.', 'mfn-opts'), 'desc' => __('You can use Drag & Drop to set the order.', 'mfn-opts')), array('id' => 'open1st', 'type' => 'select', 'title' => __('Open First', 'mfn-opts'), 'desc' => __('Open first tab at start.', 'mfn-opts'), 'options' => array(0 => 'No', 1 => 'Yes')), array('id' => 'openAll', 'type' => 'select', 'options' => array(0 => 'No', 1 => 'Yes'), 'title' => __('Open All', 'mfn-opts'), 'desc' => __('Open all tabs at start', 'mfn-opts')), array('id' => 'style', 'type' => 'select', 'title' => __('Style', 'mfn-opts'), 'options' => array('accordion' => 'Accordion', 'toggle' => 'Toggle')), array('id' => 'classes', 'type' => 'text', 'title' => __('Custom | Classes', 'mfn-opts'), 'sub_desc' => __('Custom CSS Item Classes Names', 'mfn-opts'), 'desc' => __('Multiple classes should be separated with SPACE', 'mfn-opts')))), 'article_box' => array('type' => 'article_box', 'title' => __('Article box', 'mfn-opts'), 'size' => '1/3', 'fields' => array(array('id' => 'image', 'type' => 'upload', 'title' => __('Image', 'mfn-opts'), 'sub_desc' => __('Featured Image', 'mfn-opts')), array('id' => 'slogan', 'type' => 'text', 'title' => __('Slogan', 'mfn-opts')), array('id' => 'title', 'type' => 'text', 'title' => __('Title', 'mfn-opts')), array('id' => 'link', 'type' => 'text', 'title' => __('Link', 'mfn-opts')), array('id' => 'target', 'type' => 'select', 'options' => array(0 => 'No', 1 => 'Yes'), 'title' => __('Open in new window', 'mfn-opts'), 'desc' => __('Adds a target="_blank" attribute to the link.', 'mfn-opts')), array('id' => 'animate', 'type' => 'select', 'title' => __('Animation', 'mfn-opts'), 'sub_desc' => __('Entrance animation', 'mfn-opts'), 'options' => $mfn_animate), array('id' => 'classes', 'type' => 'text', 'title' => __('Custom | Classes', 'mfn-opts'), 'sub_desc' => __('Custom CSS Item Classes Names', 'mfn-opts'), 'desc' => __('Multiple classes should be separated with SPACE', 'mfn-opts')))), 'blockquote' => array('type' => 'blockquote', 'title' => __('Blockquote', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'content', 'type' => 'textarea', 'title' => __('Content', 'mfn-opts'), 'sub_desc' => __('Blockquote content.', 'mfn-opts'), 'desc' => __('HTML tags allowed.', 'mfn-opts')), array('id' => 'author', 'type' => 'text', 'title' => __('Author', 'mfn-opts')), array('id' => 'link', 'type' => 'text', 'title' => __('Link', 'mfn-opts'), 'sub_desc' => __('Link to company page.', 'mfn-opts')), array('id' => 'target', 'type' => 'select', 'options' => array(0 => 'No', 1 => 'Yes'), 'title' => __('Open in new window', 'mfn-opts'), 'sub_desc' => __('Open link in a new window.', 'mfn-opts'), 'desc' => __('Adds a target="_blank" attribute to the link.', 'mfn-opts')), array('id' => 'classes', 'type' => 'text', 'title' => __('Custom | Classes', 'mfn-opts'), 'sub_desc' => __('Custom CSS Item Classes Names', 'mfn-opts'), 'desc' => __('Multiple classes should be separated with SPACE', 'mfn-opts')))), 'blog' => array('type' => 'blog', 'title' => __('Blog', 'mfn-opts'), 'size' => '1/1', 'fields' => array(array('id' => 'count', 'type' => 'text', 'title' => __('Count', 'mfn-opts'), 'sub_desc' => __('Number of posts to show', 'mfn-opts'), 'std' => '2', 'class' => 'small-text'), array('id' => 'category', 'type' => 'select', 'title' => __('Category', 'mfn-opts'), 'options' => mfn_get_categories('category'), 'sub_desc' => __('Select posts category', 'mfn-opts')), array('id' => 'category_multi', 'type' => 'text', 'title' => __('Multiple Categories', 'mfn-opts'), 'sub_desc' => __('Categories Slugs', 'mfn-opts'), 'desc' => __('Slugs should be separated with <strong>coma</strong> (,).', 'mfn-opts')), array('id' => 'style', 'type' => 'select', 'title' => 'Style', 'options' => array('classic' => 'Classic', 'masonry' => 'Masonry Blog Style', 'masonry tiles' => 'Masonry Tiles', 'photo' => 'Photo (Horizontal Images)', 'timeline' => 'Timeline'), 'std' => 'classic'), array('id' => 'columns', 'type' => 'select', 'title' => __('Columns', 'mfn-opts'), 'desc' => __('Default: 3. Recommended: 2-4. Too large value may crash the layout.<br />This option works in style: <b>Masonry</b>', 'mfn-opts'), 'options' => array(2 => 2, 3 => 3, 4 => 4, 5 => 5, 6 => 6), 'std' => 3), array('id' => 'greyscale', 'type' => 'select', 'title' => 'Greyscale Images', 'options' => array(0 => 'No', 1 => 'Yes')), array('id' => 'more', 'type' => 'select', 'options' => array(0 => 'No', 1 => 'Yes'), 'title' => __('Show | Read More link', 'mfn-opts'), 'std' => 1), array('id' => 'filters', 'type' => 'select', 'options' => array(0 => 'No', 1 => 'Yes'), 'title' => __('Show | Filters', 'mfn-opts'), 'desc' => __('This option works in <b>Category: All</b> and <b>Style: Masonry</b>', 'mfn-opts')), array('id' => 'pagination', 'type' => 'select', 'options' => array(0 => 'No', 1 => 'Yes'), 'title' => __('Show | Pagination', 'mfn-opts'), 'desc' => __('<strong>Notice:</strong> Pagination will <strong>not</strong> work if you put item on Homepage of WordPress Multilangual Site.', 'mfn-opts')), array('id' => 'load_more', 'type' => 'select', 'title' => __('Show | Load More button', 'mfn-opts'), 'sub_desc' => __('Show Ajax Load More button', 'mfn-opts'), 'desc' => __('This will replace all sliders on list with featured images. Please also <b>show Pagination</b>', 'mfn-opts'), 'options' => array(0 => 'No', 1 => 'Yes')), array('id' => 'classes', 'type' => 'text', 'title' => __('Custom | Classes', 'mfn-opts'), 'sub_desc' => __('Custom CSS Item Classes Names', 'mfn-opts'), 'desc' => __('Multiple classes should be separated with SPACE', 'mfn-opts')))), 'blog_news' => array('type' => 'blog_news', 'title' => __('Blog News', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'title', 'type' => 'text', 'title' => __('Title', 'mfn-opts')), array('id' => 'count', 'type' => 'text', 'title' => __('Count', 'mfn-opts'), 'sub_desc' => __('Number of posts to show', 'mfn-opts'), 'desc' => __('We <strong>do not</strong> recommend use more than 10 items, because site will be working slowly.', 'mfn-opts'), 'std' => '5', 'class' => 'small-text'), array('id' => 'category', 'type' => 'select', 'title' => __('Category', 'mfn-opts'), 'options' => mfn_get_categories('category'), 'sub_desc' => __('Select posts category', 'mfn-opts')), array('id' => 'category_multi', 'type' => 'text', 'title' => __('Multiple Categories', 'mfn-opts'), 'sub_desc' => __('Categories Slugs', 'mfn-opts'), 'desc' => __('Slugs should be separated with <strong>coma</strong> (,).', 'mfn-opts')), array('id' => 'link', 'type' => 'text', 'title' => __('Button Link', 'mfn-opts')), array('id' => 'link_title', 'type' => 'text', 'title' => __('Button Title', 'mfn-opts'), 'class' => 'small-text'), array('id' => 'classes', 'type' => 'text', 'title' => __('Custom | Classes', 'mfn-opts'), 'sub_desc' => __('Custom CSS Item Classes Names', 'mfn-opts'), 'desc' => __('Multiple classes should be separated with SPACE', 'mfn-opts')))), 'blog_slider' => array('type' => 'blog_slider', 'title' => __('Blog Slider', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'title', 'type' => 'text', 'title' => __('Title', 'mfn-opts')), array('id' => 'count', 'type' => 'text', 'title' => __('Count', 'mfn-opts'), 'sub_desc' => __('Number of posts to show', 'mfn-opts'), 'desc' => __('We <strong>do not</strong> recommend use more than 10 items, because site will be working slowly.', 'mfn-opts'), 'std' => '5', 'class' => 'small-text'), array('id' => 'category', 'type' => 'select', 'title' => __('Category', 'mfn-opts'), 'options' => mfn_get_categories('category'), 'sub_desc' => __('Select posts category', 'mfn-opts')), array('id' => 'category_multi', 'type' => 'text', 'title' => __('Multiple Categories', 'mfn-opts'), 'sub_desc' => __('Categories Slugs', 'mfn-opts'), 'desc' => __('Slugs should be separated with <strong>coma</strong> (,).', 'mfn-opts')), array('id' => 'more', 'type' => 'select', 'options' => array(0 => 'No', 1 => 'Yes'), 'title' => __('Show Read More button', 'mfn-opts'), 'std' => 1), array('id' => 'style', 'type' => 'select', 'title' => __('Style', 'mfn-opts'), 'options' => array('' => 'Default', 'flat' => 'Flat')), array('id' => 'classes', 'type' => 'text', 'title' => __('Custom | Classes', 'mfn-opts'), 'sub_desc' => __('Custom CSS Item Classes Names', 'mfn-opts'), 'desc' => __('Multiple classes should be separated with SPACE', 'mfn-opts')))), 'call_to_action' => array('type' => 'call_to_action', 'title' => __('Call to Action', 'mfn-opts'), 'size' => '1/1', 'fields' => array(array('id' => 'title', 'type' => 'text', 'title' => __('Title', 'mfn-opts')), array('id' => 'icon', 'type' => 'icon', 'title' => __('Icon', 'mfn-opts'), 'class' => 'small-text'), array('id' => 'content', 'type' => 'textarea', 'title' => __('Content', 'mfn-opts'), 'desc' => __('HTML tags allowed.', 'mfn-opts')), array('id' => 'link', 'type' => 'text', 'title' => __('Link', 'mfn-opts')), array('id' => 'button_title', 'type' => 'text', 'title' => __('Button Title', 'mfn-opts'), 'desc' => __('Leave this field blank if you want Call to Action with Big Icon', 'mfn-opts'), 'class' => 'small-text'), array('id' => 'class', 'type' => 'text', 'title' => __('Class', 'mfn-opts'), 'desc' => __('This option is useful when you want to use PrettyPhoto (prettyphoto)', 'mfn-opts')), array('id' => 'target', 'type' => 'select', 'title' => __('Open in new window', 'mfn-opts'), 'desc' => __('Adds a target="_blank" attribute to the link', 'mfn-opts'), 'options' => array(0 => 'No', 1 => 'Yes')), array('id' => 'animate', 'type' => 'select', 'title' => __('Animation', 'mfn-opts'), 'sub_desc' => __('Entrance animation', 'mfn-opts'), 'options' => $mfn_animate), array('id' => 'classes', 'type' => 'text', 'title' => __('Custom | Classes', 'mfn-opts'), 'sub_desc' => __('Custom CSS Item Classes Names', 'mfn-opts'), 'desc' => __('Multiple classes should be separated with SPACE', 'mfn-opts')))), 'chart' => array('type' => 'chart', 'title' => __('Chart', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'percent', 'type' => 'text', 'title' => __('Percent', 'mfn-opts'), 'desc' => __('Number between 0-100', 'mfn-opts')), array('id' => 'label', 'type' => 'text', 'title' => __('Chart Label', 'mfn-opts')), array('id' => 'icon', 'type' => 'icon', 'title' => __('Chart Icon', 'mfn-opts'), 'class' => 'small-text'), array('id' => 'image', 'type' => 'upload', 'title' => __('Chart Image', 'mfn-opts')), array('id' => 'title', 'type' => 'text', 'title' => __('Title', 'mfn-opts')), array('id' => 'classes', 'type' => 'text', 'title' => __('Custom | Classes', 'mfn-opts'), 'sub_desc' => __('Custom CSS Item Classes Names', 'mfn-opts'), 'desc' => __('Multiple classes should be separated with SPACE', 'mfn-opts')))), 'clients' => array('type' => 'clients', 'title' => __('Clients', 'mfn-opts'), 'size' => '1/1', 'fields' => array(array('id' => 'in_row', 'type' => 'text', 'title' => __('Items in Row', 'mfn-opts'), 'sub_desc' => __('Number of items in row', 'mfn-opts'), 'desc' => __('Recommended number: 3-6', 'mfn-opts'), 'std' => 6, 'class' => 'small-text'), array('id' => 'category', 'type' => 'select', 'title' => __('Category', 'mfn-opts'), 'options' => mfn_get_categories('client-types'), 'sub_desc' => __('Select the client post category.', 'mfn-opts')), array('id' => 'orderby', 'type' => 'select', 'title' => __('Order by', 'mfn-opts'), 'options' => array('date' => 'Date', 'menu_order' => 'Menu order', 'title' => 'Title', 'rand' => 'Random'), 'std' => 'menu_order'), array('id' => 'order', 'type' => 'select', 'title' => __('Order', 'mfn-opts'), 'options' => array('ASC' => 'Ascending', 'DESC' => 'Descending'), 'std' => 'ASC'), array('id' => 'style', 'type' => 'select', 'options' => array('' => 'Default', 'tiles' => 'Tiles'), 'title' => __('Style', 'mfn-opts')), array('id' => 'greyscale', 'type' => 'select', 'title' => 'Greyscale Images', 'options' => array(0 => 'No', 1 => 'Yes')), array('id' => 'classes', 'type' => 'text', 'title' => __('Custom | Classes', 'mfn-opts'), 'sub_desc' => __('Custom CSS Item Classes Names', 'mfn-opts'), 'desc' => __('Multiple classes should be separated with SPACE', 'mfn-opts')))), 'clients_slider' => array('type' => 'clients_slider', 'title' => __('Clients Slider', 'mfn-opts'), 'size' => '1/1', 'fields' => array(array('id' => 'title', 'type' => 'text', 'title' => __('Title', 'mfn-opts')), array('id' => 'category', 'type' => 'select', 'title' => __('Category', 'mfn-opts'), 'options' => mfn_get_categories('client-types'), 'sub_desc' => __('Select the client post category.', 'mfn-opts')), array('id' => 'orderby', 'type' => 'select', 'title' => __('Order by', 'mfn-opts'), 'options' => array('date' => 'Date', 'menu_order' => 'Menu order', 'title' => 'Title', 'rand' => 'Random'), 'std' => 'menu_order'), array('id' => 'order', 'type' => 'select', 'title' => __('Order', 'mfn-opts'), 'options' => array('ASC' => 'Ascending', 'DESC' => 'Descending'), 'std' => 'ASC'), array('id' => 'classes', 'type' => 'text', 'title' => __('Custom | Classes', 'mfn-opts'), 'sub_desc' => __('Custom CSS Item Classes Names', 'mfn-opts'), 'desc' => __('Multiple classes should be separated with SPACE', 'mfn-opts')))), 'code' => array('type' => 'code', 'title' => __('Code', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'content', 'type' => 'textarea', 'title' => __('Content', 'mfn-opts'), 'class' => 'full-width'), array('id' => 'classes', 'type' => 'text', 'title' => __('Custom | Classes', 'mfn-opts'), 'sub_desc' => __('Custom CSS Item Classes Names', 'mfn-opts'), 'desc' => __('Multiple classes should be separated with SPACE', 'mfn-opts')))), 'column' => array('type' => 'column', 'title' => __('Column', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'title', 'type' => 'text', 'title' => __('Title', 'mfn-opts'), 'desc' => __('This field is used as an Item Label in admin panel only and shows after page update.', 'mfn-opts')), array('id' => 'content', 'type' => 'textarea', 'title' => __('Column content', 'mfn-opts'), 'desc' => __('Shortcodes and HTML tags allowed.', 'mfn-opts'), 'class' => 'full-width sc', 'validate' => 'html'), array('id' => 'align', 'type' => 'select', 'title' => __('Text Align', 'mfn-opts'), 'options' => array('' => 'None', 'left' => 'Left', 'right' => 'Right', 'center' => 'Center', 'justify' => 'Justify')), array('id' => 'column_bg', 'type' => 'text', 'title' => __('Background color', 'mfn-opts'), 'desc' => __('Use color name ( gray ) or hex ( #808080 )', 'mfn-opts'), 'class' => 'small-text'), array('id' => 'padding', 'type' => 'text', 'title' => __('Padding', 'mfn-opts'), 'desc' => __('Use value with <b>px</b> or <b>%</b>. Example: <b>20px</b> or <b>20px 10px 20px 10px</b> or <b>20px 1%</b>', 'mfn-opts'), 'class' => 'small-text'), array('id' => 'animate', 'type' => 'select', 'title' => __('Animation', 'mfn-opts'), 'sub_desc' => __('Entrance animation', 'mfn-opts'), 'options' => $mfn_animate), array('id' => 'classes', 'type' => 'text', 'title' => __('Custom | Classes', 'mfn-opts'), 'sub_desc' => __('Custom CSS Item Classes Names', 'mfn-opts'), 'desc' => __('Multiple classes should be separated with SPACE', 'mfn-opts')))), 'contact_box' => array('type' => 'contact_box', 'title' => __('Contact Box', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'title', 'type' => 'text', 'title' => __('Title', 'mfn-opts')), array('id' => 'address', 'type' => 'textarea', 'title' => __('Address', 'mfn-opts'), 'desc' => __('HTML tags allowed.', 'mfn-opts')), array('id' => 'telephone', 'type' => 'text', 'title' => __('Phone', 'mfn-opts'), 'desc' => __('Phone number', 'mfn-opts'), 'class' => 'small-text'), array('id' => 'telephone_2', 'type' => 'text', 'title' => __('Phone 2nd', 'mfn-opts'), 'desc' => __('Additional Phone number', 'mfn-opts'), 'class' => 'small-text'), array('id' => 'fax', 'type' => 'text', 'title' => __('Fax', 'mfn-opts'), 'desc' => __('Fax number', 'mfn-opts'), 'class' => 'small-text'), array('id' => 'email', 'type' => 'text', 'title' => __('Email', 'mfn-opts')), array('id' => 'www', 'type' => 'text', 'title' => __('WWW', 'mfn-opts')), array('id' => 'image', 'type' => 'upload', 'title' => __('Background Image', 'mfn-opts')), array('id' => 'animate', 'type' => 'select', 'title' => __('Animation', 'mfn-opts'), 'sub_desc' => __('Entrance animation', 'mfn-opts'), 'options' => $mfn_animate), array('id' => 'classes', 'type' => 'text', 'title' => __('Custom | Classes', 'mfn-opts'), 'sub_desc' => __('Custom CSS Item Classes Names', 'mfn-opts'), 'desc' => __('Multiple classes should be separated with SPACE', 'mfn-opts')))), 'content' => array('type' => 'content', 'title' => __('Content WP', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'info', 'type' => 'info', 'desc' => __('Adding this Item will show Content from WordPress Editor above Page Options. You can use it only once per page. Please also remember to turn on "Hide The Content" option.', 'nhp-opts')), array('id' => 'classes', 'type' => 'text', 'title' => __('Custom | Classes', 'mfn-opts'), 'sub_desc' => __('Custom CSS Item Classes Names', 'mfn-opts'), 'desc' => __('Multiple classes should be separated with SPACE', 'mfn-opts')))), 'countdown' => array('type' => 'countdown', 'title' => __('Countdown', 'mfn-opts'), 'size' => '1/1', 'fields' => array(array('id' => 'date', 'type' => 'text', 'title' => __('Lunch Date', 'mfn-opts'), 'desc' => __('Format: 12/30/2014 12:00:00 month/day/year hour:minute:second', 'mfn-opts'), 'std' => '12/30/2014 12:00:00', 'class' => 'small-text'), array('id' => 'timezone', 'type' => 'select', 'title' => __('UTC Timezone', 'mfn-opts'), 'options' => mfna_utc(), 'std' => '0'), array('id' => 'classes', 'type' => 'text', 'title' => __('Custom | Classes', 'mfn-opts'), 'sub_desc' => __('Custom CSS Item Classes Names', 'mfn-opts'), 'desc' => __('Multiple classes should be separated with SPACE', 'mfn-opts')))), 'counter' => array('type' => 'counter', 'title' => __('Counter', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'icon', 'type' => 'icon', 'title' => __('Icon', 'mfn-opts'), 'std' => ' icon-lamp', 'class' => 'small-text'), array('id' => 'color', 'type' => 'text', 'title' => __('Icon Color', 'mfn-opts'), 'desc' => __('Use color name ( blue ) or hex ( #2991D6 )', 'mfn-opts'), 'class' => 'small-text'), array('id' => 'image', 'type' => 'upload', 'title' => __('Image', 'mfn-opts'), 'desc' => __('If you upload an image, icon will not show', 'mfn-opts')), array('id' => 'number', 'type' => 'text', 'title' => __('Number', 'mfn-opts'), 'class' => 'small-text'), array('id' => 'prefix', 'type' => 'text', 'title' => __('Prefix', 'mfn-opts'), 'class' => 'small-text'), array('id' => 'label', 'type' => 'text', 'title' => __('Postfix', 'mfn-opts'), 'class' => 'small-text'), array('id' => 'title', 'type' => 'text', 'title' => __('Title', 'mfn-opts')), array('id' => 'type', 'type' => 'select', 'options' => array('horizontal' => 'Horizontal', 'vertical' => 'Vertical'), 'title' => __('Style', 'mfn-opts'), 'desc' => __('Vertical style works only for column widths: 1/4, 1/3 & 1/2', 'mfn-opts'), 'std' => 'vertical'), array('id' => 'animate', 'type' => 'select', 'title' => __('Animation', 'mfn-opts'), 'sub_desc' => __('Entrance animation', 'mfn-opts'), 'options' => $mfn_animate), array('id' => 'classes', 'type' => 'text', 'title' => __('Custom | Classes', 'mfn-opts'), 'sub_desc' => __('Custom CSS Item Classes Names', 'mfn-opts'), 'desc' => __('Multiple classes should be separated with SPACE', 'mfn-opts')))), 'divider' => array('type' => 'divider', 'title' => __('Divider', 'mfn-opts'), 'size' => '1/1', 'fields' => array(array('id' => 'height', 'type' => 'text', 'title' => __('Divider height', 'mfn-opts'), 'desc' => __('px', 'mfn-opts'), 'class' => 'small-text'), array('id' => 'style', 'type' => 'select', 'options' => array('default' => 'Default', 'dots' => 'Dots', 'zigzag' => 'ZigZag'), 'title' => __('Style', 'mfn-opts')), array('id' => 'line', 'type' => 'select', 'options' => array('default' => 'Default', 'narrow' => 'Narrow', 'wide' => 'Wide', '' => 'No Line'), 'title' => __('Line', 'mfn-opts'), 'desc' => __('This option can be used <strong>only</strong> with Style: Default.', 'mfn-opts')), array('id' => 'themecolor', 'type' => 'select', 'options' => array(0 => 'No', 1 => 'Yes'), 'title' => __('Theme Color', 'mfn-opts'), 'desc' => __('This option can be used <strong>only</strong> with Style: Default.', 'mfn-opts')), array('id' => 'classes', 'type' => 'text', 'title' => __('Custom | Classes', 'mfn-opts'), 'sub_desc' => __('Custom CSS Item Classes Names', 'mfn-opts'), 'desc' => __('Multiple classes should be separated with SPACE', 'mfn-opts')))), 'fancy_divider' => array('type' => 'fancy_divider', 'title' => __('Fancy Divider', 'mfn-opts'), 'size' => '1/1', 'fields' => array(array('id' => 'info', 'type' => 'info', 'desc' => __('This item can only be used on pages <strong>Without Sidebar</strong>. Please also set Section Style to <strong>Full Width</strong>.', 'nhp-opts')), array('id' => 'style', 'type' => 'select', 'options' => array('circle up' => 'Circle Up', 'circle down' => 'Circle Down', 'curve up' => 'Curve Up', 'curve down' => 'Curve Down', 'stamp' => 'Stamp', 'triangle up' => 'Triangle Up', 'triangle down' => 'Triangle Down'), 'title' => __('Style', 'mfn-opts')), array('id' => 'color_top', 'type' => 'text', 'title' => __('Color Top', 'mfn-opts'), 'desc' => __('Use color name ( blue ) or hex ( #2991D6 )', 'mfn-opts'), 'class' => 'small-text', 'std' => ''), array('id' => 'color_bottom', 'type' => 'text', 'title' => __('Color Bottom', 'mfn-opts'), 'desc' => __('Use color name ( blue ) or hex ( #2991D6 )', 'mfn-opts'), 'class' => 'small-text', 'std' => ''), array('id' => 'classes', 'type' => 'text', 'title' => __('Custom | Classes', 'mfn-opts'), 'sub_desc' => __('Custom CSS Item Classes Names', 'mfn-opts'), 'desc' => __('Multiple classes should be separated with SPACE', 'mfn-opts')))), 'fancy_heading' => array('type' => 'fancy_heading', 'title' => __('Fancy Heading', 'mfn-opts'), 'size' => '1/1', 'fields' => array(array('id' => 'title', 'type' => 'text', 'title' => __('Title', 'mfn-opts')), array('id' => 'h1', 'type' => 'select', 'options' => array(0 => 'No', 1 => 'Yes'), 'title' => __('Use H1 tag', 'mfn-opts'), 'desc' => __('Wrap title into H1 instead of H2', 'mfn-opts')), array('id' => 'icon', 'type' => 'icon', 'title' => __('Icon', 'mfn-opts'), 'sub_desc' => __('Icon Style only', 'mfn-opts'), 'class' => 'small-text'), array('id' => 'slogan', 'type' => 'text', 'title' => __('Slogan', 'mfn-opts'), 'sub_desc' => __('Line Style only', 'mfn-opts')), array('id' => 'content', 'type' => 'textarea', 'title' => __('Content', 'mfn-opts'), 'desc' => __('Some Shortcodes and HTML tags allowed', 'mfn-opts'), 'class' => 'full-width sc', 'validate' => 'html'), array('id' => 'style', 'type' => 'select', 'options' => array('icon' => 'Icon', 'line' => 'Line', 'arrows' => 'Arrows'), 'title' => __('Style', 'mfn-opts'), 'desc' => __('Some fields above work on selected styles.', 'mfn-opts')), array('id' => 'animate', 'type' => 'select', 'title' => __('Animation', 'mfn-opts'), 'sub_desc' => __('Entrance animation', 'mfn-opts'), 'options' => $mfn_animate), array('id' => 'classes', 'type' => 'text', 'title' => __('Custom | Classes', 'mfn-opts'), 'sub_desc' => __('Custom CSS Item Classes Names', 'mfn-opts'), 'desc' => __('Multiple classes should be separated with SPACE', 'mfn-opts')))), 'faq' => array('type' => 'faq', 'title' => __('FAQ', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'title', 'type' => 'text', 'title' => __('Title', 'mfn-opts')), array('id' => 'tabs', 'type' => 'tabs', 'title' => __('FAQ', 'mfn-opts'), 'sub_desc' => __('Manage FAQ tabs.', 'mfn-opts'), 'desc' => __('You can use Drag & Drop to set the order', 'mfn-opts')), array('id' => 'open1st', 'type' => 'select', 'options' => array(0 => 'No', 1 => 'Yes'), 'title' => __('Open First', 'mfn-opts'), 'desc' => __('Open first tab at start', 'mfn-opts')), array('id' => 'openAll', 'type' => 'select', 'options' => array(0 => 'No', 1 => 'Yes'), 'title' => __('Open All', 'mfn-opts'), 'desc' => __('Open all tabs at start', 'mfn-opts')), array('id' => 'classes', 'type' => 'text', 'title' => __('Custom | Classes', 'mfn-opts'), 'sub_desc' => __('Custom CSS Item Classes Names', 'mfn-opts'), 'desc' => __('Multiple classes should be separated with SPACE', 'mfn-opts')))), 'feature_list' => array('type' => 'feature_list', 'title' => __('Feature List', 'mfn-opts'), 'size' => '1/1', 'fields' => array(array('id' => 'title', 'type' => 'text', 'title' => __('Title', 'mfn-opts'), 'desc' => __('This field is used as an Item Label in admin panel only and shows after page update.', 'mfn-opts')), array('id' => 'content', 'type' => 'textarea', 'title' => __('Content', 'mfn-opts'), 'desc' => __('Please use <strong>[item icon="" title="" link="" target=""]</strong> shortcodes.', 'mfn-opts'), 'std' => '[item icon="icon-lamp" title="" link="" target="" animate=""]'), array('id' => 'columns', 'type' => 'select', 'title' => __('Columns', 'mfn-opts'), 'desc' => __('Default: 4. Recommended: 2-4. Too large value may crash the layout.', 'mfn-opts'), 'options' => array(2 => 2, 3 => 3, 4 => 4, 5 => 5, 6 => 6), 'std' => 4), array('id' => 'classes', 'type' => 'text', 'title' => __('Custom | Classes', 'mfn-opts'), 'sub_desc' => __('Custom CSS Item Classes Names', 'mfn-opts'), 'desc' => __('Multiple classes should be separated with SPACE', 'mfn-opts')))), 'flat_box' => array('type' => 'flat_box', 'title' => __('Flat Box', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'icon', 'type' => 'icon', 'title' => __('Icon', 'mfn-opts'), 'std' => 'icon-lamp', 'class' => 'small-text'), array('id' => 'background', 'type' => 'text', 'title' => __('Icon background', 'mfn-opts'), 'desc' => __('Use color name ( blue ) or hex ( #2991D6 ). Leave this field blank to use Theme Background', 'mfn-opts'), 'class' => 'small-text'), array('id' => 'image', 'type' => 'upload', 'title' => __('Image', 'mfn-opts')), array('id' => 'title', 'type' => 'text', 'title' => __('Title', 'mfn-opts')), array('id' => 'content', 'type' => 'textarea', 'title' => __('Content', 'mfn-opts'), 'desc' => __('Some Shortcodes and HTML tags allowed', 'mfn-opts'), 'class' => 'full-width sc', 'validate' => 'html'), array('id' => 'link', 'type' => 'text', 'title' => __('Link', 'mfn-opts')), array('id' => 'target', 'type' => 'select', 'options' => array(0 => 'No', 1 => 'Yes'), 'title' => __('Open in new window', 'mfn-opts'), 'desc' => __('Adds a target="_blank" attribute to the link.', 'mfn-opts')), array('id' => 'animate', 'type' => 'select', 'title' => __('Animation', 'mfn-opts'), 'sub_desc' => __('Entrance animation', 'mfn-opts'), 'options' => $mfn_animate), array('id' => 'classes', 'type' => 'text', 'title' => __('Custom | Classes', 'mfn-opts'), 'sub_desc' => __('Custom CSS Item Classes Names', 'mfn-opts'), 'desc' => __('Multiple classes should be separated with SPACE', 'mfn-opts')))), 'hover_box' => array('type' => 'hover_box', 'title' => __('Hover Box', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'image', 'type' => 'upload', 'title' => __('Image', 'mfn-opts')), array('id' => 'image_hover', 'type' => 'upload', 'title' => __('Image | Hover', 'mfn-opts'), 'desc' => __('Both images <b>must have the same size</b>', 'mfn-opts')), array('id' => 'alt', 'type' => 'text', 'title' => __('Image | Alt', 'mfn-opts')), array('id' => 'link', 'type' => 'text', 'title' => __('Link', 'mfn-opts')), array('id' => 'target', 'type' => 'select', 'title' => __('Link | Target', 'mfn-opts'), 'options' => array(0 => 'Default | _self', 1 => 'New Tab or Window | _blank', 'prettyphoto' => 'prettyPhoto (images and embed video)')), array('id' => 'classes', 'type' => 'text', 'title' => __('Custom | Classes', 'mfn-opts'), 'sub_desc' => __('Custom CSS Item Classes Names', 'mfn-opts'), 'desc' => __('Multiple classes should be separated with SPACE', 'mfn-opts')))), 'hover_color' => array('type' => 'hover_color', 'title' => __('Hover Color', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'background', 'type' => 'text', 'title' => __('Background color', 'mfn-opts'), 'desc' => __('Use color name ( blue ) or hex ( #2991D6 )', 'mfn-opts'), 'class' => 'small-text', 'std' => '#2991D6'), array('id' => 'background_hover', 'type' => 'text', 'title' => __('Hover Background color', 'mfn-opts'), 'desc' => __('Use color name ( blue ) or hex ( #2991D6 )', 'mfn-opts'), 'class' => 'small-text', 'std' => '#2991D6'), array('id' => 'content', 'type' => 'textarea', 'title' => __('Content', 'mfn-opts'), 'desc' => __('Some Shortcodes and HTML tags allowed', 'mfn-opts'), 'class' => 'full-width sc'), array('id' => 'link', 'type' => 'text', 'title' => __('Link', 'mfn-opts')), array('id' => 'class', 'type' => 'text', 'title' => __('Class', 'mfn-opts'), 'desc' => __('This option is useful when you want to use PrettyPhoto (prettyphoto)', 'mfn-opts')), array('id' => 'target', 'type' => 'select', 'title' => __('Open in new window', 'mfn-opts'), 'desc' => __('Adds a target="_blank" attribute to the link', 'mfn-opts'), 'options' => array(0 => 'No', 1 => 'Yes')), array('id' => 'classes', 'type' => 'text', 'title' => __('Custom | Classes', 'mfn-opts'), 'sub_desc' => __('Custom CSS Item Classes Names', 'mfn-opts'), 'desc' => __('Multiple classes should be separated with SPACE', 'mfn-opts')))), 'how_it_works' => array('type' => 'how_it_works', 'title' => __('How It Works', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'image', 'type' => 'upload', 'title' => __('Background Image', 'mfn-opts'), 'desc' => __('Recommended: Square Image with transparent background.', 'mfn-opts')), array('id' => 'number', 'type' => 'text', 'title' => __('Number', 'mfn-opts'), 'class' => 'small-text'), array('id' => 'title', 'type' => 'text', 'title' => __('Title', 'mfn-opts')), array('id' => 'content', 'type' => 'textarea', 'title' => __('Content', 'mfn-opts'), 'desc' => __('Some Shortcodes and HTML tags allowed', 'mfn-opts'), 'class' => 'full-width sc', 'validate' => 'html'), array('id' => 'border', 'type' => 'select', 'title' => __('Line', 'mfn-opts'), 'sub_desc' => __('Show right connecting line', 'mfn-opts'), 'options' => array(0 => 'No', 1 => 'Yes')), array('id' => 'link', 'type' => 'text', 'title' => __('Link', 'mfn-opts')), array('id' => 'target', 'type' => 'select', 'options' => array(0 => 'No', 1 => 'Yes'), 'title' => __('Open in new window', 'mfn-opts'), 'desc' => __('Adds a target="_blank" attribute to the link.', 'mfn-opts')), array('id' => 'animate', 'type' => 'select', 'title' => __('Animation', 'mfn-opts'), 'sub_desc' => __('Entrance animation', 'mfn-opts'), 'options' => $mfn_animate), array('id' => 'classes', 'type' => 'text', 'title' => __('Custom | Classes', 'mfn-opts'), 'sub_desc' => __('Custom CSS Item Classes Names', 'mfn-opts'), 'desc' => __('Multiple classes should be separated with SPACE', 'mfn-opts')))), 'icon_box' => array('type' => 'icon_box', 'title' => __('Icon Box', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'title', 'type' => 'text', 'title' => __('Title', 'mfn-opts')), array('id' => 'content', 'type' => 'textarea', 'title' => __('Content', 'mfn-opts'), 'desc' => __('Some Shortcodes and HTML tags allowed', 'mfn-opts'), 'class' => 'full-width sc'), array('id' => 'icon', 'type' => 'icon', 'title' => __('Icon', 'mfn-opts'), 'std' => 'icon-lamp', 'class' => 'small-text'), array('id' => 'image', 'type' => 'upload', 'title' => __('Image', 'mfn-opts')), array('id' => 'icon_position', 'type' => 'select', 'options' => array('left' => 'Left', 'top' => 'Top'), 'title' => __('Icon Position', 'mfn-opts'), 'desc' => __('Left position works only for column widths: 1/4, 1/3 & 1/2', 'mfn-opts'), 'std' => 'top'), array('id' => 'border', 'type' => 'select', 'title' => __('Border', 'mfn-opts'), 'sub_desc' => __('Show right border', 'mfn-opts'), 'options' => array(0 => 'No', 1 => 'Yes')), array('id' => 'link', 'type' => 'text', 'title' => __('Link', 'mfn-opts')), array('id' => 'target', 'type' => 'select', 'options' => array(0 => 'No', 1 => 'Yes'), 'title' => __('Open in new window', 'mfn-opts'), 'desc' => __('Adds a target="_blank" attribute to the link.', 'mfn-opts')), array('id' => 'animate', 'type' => 'select', 'title' => __('Animation', 'mfn-opts'), 'sub_desc' => __('Entrance animation', 'mfn-opts'), 'options' => $mfn_animate), array('id' => 'class', 'type' => 'text', 'title' => __('Custom CSS classes for link', 'mfn-opts'), 'desc' => __('This option is useful when you want to use PrettyPhoto (prettyphoto) or Scroll (scroll).', 'mfn-opts')), array('id' => 'classes', 'type' => 'text', 'title' => __('Custom | Classes', 'mfn-opts'), 'sub_desc' => __('Custom CSS Item Classes Names', 'mfn-opts'), 'desc' => __('Multiple classes should be separated with SPACE', 'mfn-opts')))), 'image' => array('type' => 'image', 'title' => __('Image', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'src', 'type' => 'upload', 'title' => __('Image', 'mfn-opts')), array('id' => 'width', 'type' => 'text', 'title' => __('Image Width', 'mfn-opts'), 'desc' => __('px<br />optional', 'mfn-opts'), 'class' => 'small-text'), array('id' => 'height', 'type' => 'text', 'title' => __('Image Height', 'mfn-opts'), 'desc' => __('px<br />optional', 'mfn-opts'), 'class' => 'small-text'), array('id' => 'border', 'type' => 'select', 'options' => array(0 => 'No', 1 => 'Yes'), 'title' => __('Border', 'mfn-opts'), 'sub_desc' => __('Show Image Border', 'mfn-opts')), array('id' => 'align', 'type' => 'select', 'title' => __('Align', 'mfn-opts'), 'desc' => __('If you want image to be <b>resized</b> to column width use <b>align none</b>', 'mfn-opts'), 'options' => array('' => 'None', 'left' => 'Left', 'right' => 'Right', 'center' => 'Center')), array('id' => 'margin', 'type' => 'text', 'title' => __('Margin Top', 'mfn-opts'), 'desc' => __('px', 'mfn-opts'), 'class' => 'small-text'), array('id' => 'alt', 'type' => 'text', 'title' => __('Alternate Text', 'mfn-opts')), array('id' => 'caption', 'type' => 'text', 'title' => __('Caption', 'mfn-opts')), array('id' => 'link_image', 'type' => 'upload', 'title' => __('Zoomed image', 'mfn-opts'), 'desc' => __('This image will be opened in lightbox.', 'mfn-opts')), array('id' => 'link', 'type' => 'text', 'title' => __('Link', 'mfn-opts'), 'desc' => __('This link will work only if you leave the above "Zoomed image" field empty.', 'mfn-opts')), array('id' => 'target', 'type' => 'select', 'options' => array(0 => 'No', 1 => 'Yes'), 'title' => __('Open in new window', 'mfn-opts'), 'desc' => __('Adds a target="_blank" attribute to the link.', 'mfn-opts')), array('id' => 'greyscale', 'type' => 'select', 'title' => 'Greyscale Images', 'desc' => 'Works only for images with link', 'options' => array(0 => 'No', 1 => 'Yes')), array('id' => 'animate', 'type' => 'select', 'title' => __('Animation', 'mfn-opts'), 'sub_desc' => __('Entrance animation', 'mfn-opts'), 'options' => $mfn_animate), array('id' => 'classes', 'type' => 'text', 'title' => __('Custom | Classes', 'mfn-opts'), 'sub_desc' => __('Custom CSS Item Classes Names', 'mfn-opts'), 'desc' => __('Multiple classes should be separated with SPACE', 'mfn-opts')))), 'info_box' => array('type' => 'info_box', 'title' => __('Info Box', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'title', 'type' => 'text', 'title' => __('Title', 'mfn-opts')), array('id' => 'content', 'type' => 'textarea', 'title' => __('Content', 'mfn-opts'), 'desc' => __('HTML tags allowed.', 'mfn-opts'), 'std' => '<ul><li>list item 1</li><li>list item 2</li></ul>'), array('id' => 'image', 'type' => 'upload', 'title' => __('Background Image', 'mfn-opts')), array('id' => 'animate', 'type' => 'select', 'title' => __('Animation', 'mfn-opts'), 'sub_desc' => __('Entrance animation', 'mfn-opts'), 'options' => $mfn_animate), array('id' => 'classes', 'type' => 'text', 'title' => __('Custom | Classes', 'mfn-opts'), 'sub_desc' => __('Custom CSS Item Classes Names', 'mfn-opts'), 'desc' => __('Multiple classes should be separated with SPACE', 'mfn-opts')))), 'list' => array('type' => 'list', 'title' => __('List', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'icon', 'type' => 'icon', 'title' => __('Icon', 'mfn-opts'), 'std' => ' icon-lamp', 'class' => 'small-text'), array('id' => 'image', 'type' => 'upload', 'title' => __('Image', 'mfn-opts')), array('id' => 'title', 'type' => 'text', 'title' => __('Title', 'mfn-opts')), array('id' => 'content', 'type' => 'textarea', 'title' => __('Content', 'mfn-opts')), array('id' => 'link', 'type' => 'text', 'title' => __('Link', 'mfn-opts')), array('id' => 'target', 'type' => 'select', 'title' => __('Open in new window', 'mfn-opts'), 'desc' => __('Adds a target="_blank" attribute to the link.', 'mfn-opts'), 'options' => array(0 => 'No', 1 => 'Yes')), array('id' => 'style', 'type' => 'select', 'title' => __('Style', 'mfn-opts'), 'desc' => __('Only <strong>Vertical Style</strong> works for column widths 1/5 & 1/6', 'mfn-opts'), 'options' => array(1 => 'With background', 2 => 'Transparent', 3 => 'Vertical', 4 => 'Ordered list')), array('id' => 'animate', 'type' => 'select', 'title' => __('Animation', 'mfn-opts'), 'sub_desc' => __('Entrance animation', 'mfn-opts'), 'options' => $mfn_animate), array('id' => 'classes', 'type' => 'text', 'title' => __('Custom | Classes', 'mfn-opts'), 'sub_desc' => __('Custom CSS Item Classes Names', 'mfn-opts'), 'desc' => __('Multiple classes should be separated with SPACE', 'mfn-opts')))), 'map' => array('type' => 'map', 'title' => __('Map', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'lat', 'type' => 'text', 'title' => __('Google Maps Lat', 'mfn-opts'), 'class' => 'small-text', 'desc' => __('The map will appear only if this field is filled correctly.<br />Example: <b>-33.87</b>', 'mfn-opts')), array('id' => 'lng', 'type' => 'text', 'title' => __('Google Maps Lng', 'mfn-opts'), 'class' => 'small-text', 'desc' => __('The map will appear only if this field is filled correctly.<br />Example: <b>151.21</b>', 'mfn-opts')), array('id' => 'zoom', 'type' => 'text', 'title' => __('Zoom', 'mfn-opts'), 'class' => 'small-text', 'std' => 13), array('id' => 'height', 'type' => 'text', 'title' => __('Height', 'mfn-opts'), 'class' => 'small-text', 'std' => 200), array('id' => 'type', 'type' => 'select', 'title' => __('Type', 'mfn-opts'), 'options' => array('ROADMAP' => __('Map', 'mfn-opts'), 'SATELLITE' => __('Satellite', 'mfn-opts'), 'HYBRID' => __('Satellite + Map', 'mfn-opts'), 'TERRAIN' => __('Terrain', 'mfn-opts'))), array('id' => 'controls', 'type' => 'select', 'title' => __('Controls', 'mfn-opts'), 'options' => array('' => __('Zoom', 'mfn-opts'), 'mapType' => __('Map Type', 'mfn-opts'), 'streetView' => __('Street View', 'mfn-opts'), 'zoom mapType' => __('Zoom & Map Type', 'mfn-opts'), 'zoom streetView' => __('Zoom & Street View', 'mfn-opts'), 'mapType streetView' => __('Map Type & Street View', 'mfn-opts'), 'zoom mapType streetView' => __('Zoom, Map Type & Street View', 'mfn-opts'), 'hide' => __('Hide All', 'mfn-opts'))), array('id' => 'draggable', 'type' => 'select', 'title' => __('Draggable', 'mfn-opts'), 'options' => array('' => __('Enable', 'mfn-opts'), 'disable' => __('Disable', 'mfn-opts'), 'disable-mobile' => __('Disable on Mobile', 'mfn-opts'))), array('id' => 'border', 'type' => 'select', 'title' => __('Border', 'mfn-opts'), 'sub_desc' => __('Show map border', 'mfn-opts'), 'options' => array(0 => __('No', 'mfn-opts'), 1 => __('Yes', 'mfn-opts'))), array('id' => 'icon', 'type' => 'upload', 'title' => __('Marker Icon', 'mfn-opts'), 'desc' => __('.png', 'mfn-opts')), array('id' => 'styles', 'type' => 'textarea', 'title' => __('Styles', 'mfn-opts'), 'sub_desc' => __('Google Maps API styles array', 'mfn-opts'), 'desc' => __('You can get predefined styles from <a target="_blank" href="http://snazzymaps.com/">snazzymaps.com</a> or generate your own <a target="_blank" href="http://gmaps-samples-v3.googlecode.com/svn/trunk/styledmaps/wizard/index.html">here</a>', 'mfn-opts')), array('id' => 'latlng', 'type' => 'textarea', 'title' => __('Additional Markers | Lat,Lng,IconURL', 'mfn-opts'), 'desc' => __('Separate Lat,Lang,IconURL[optional] with <b>coma</b> [ , ]<br />Separate multiple Markers with <b>semicolon</b> [ ; ]<br />Example: <b>-33.88,151.21,ICON_URL;-33.89,151.22</b>', 'mfn-opts')), array('id' => 'info', 'type' => 'info', 'desc' => __('<strong>Contact Box</strong> | Works only in Full Width', 'nhp-opts')), array('id' => 'title', 'type' => 'text', 'title' => __('Box | Title', 'mfn-opts'), 'class' => 'small-text'), array('id' => 'content', 'type' => 'textarea', 'title' => __('Box | Address', 'mfn-opts'), 'desc' => __('HTML tags allowed.', 'mfn-opts')), array('id' => 'telephone', 'type' => 'text', 'title' => __('Box | Telephone', 'mfn-opts')), array('id' => 'email', 'type' => 'text', 'title' => __('Box | Email', 'mfn-opts')), array('id' => 'www', 'type' => 'text', 'title' => __('Box | WWW', 'mfn-opts')), array('id' => 'classes', 'type' => 'text', 'title' => __('Custom | Classes', 'mfn-opts'), 'sub_desc' => __('Custom CSS Item Classes Names', 'mfn-opts'), 'desc' => __('Multiple classes should be separated with SPACE', 'mfn-opts')))), 'offer' => array('type' => 'offer', 'title' => __('Offer Slider Full', 'mfn-opts'), 'size' => '1/1', 'fields' => array(array('id' => 'info', 'type' => 'info', 'desc' => __('This item can only be used on pages <strong>Without Sidebar</strong>.<br />Please also set Section Style to <strong>Full Width</strong> and use one Item in one Section.', 'nhp-opts')), array('id' => 'category', 'type' => 'select', 'title' => __('Category', 'mfn-opts'), 'options' => mfn_get_categories('offer-types'), 'sub_desc' => __('Select the offer post category.', 'mfn-opts')), array('id' => 'classes', 'type' => 'text', 'title' => __('Custom | Classes', 'mfn-opts'), 'sub_desc' => __('Custom CSS Item Classes Names', 'mfn-opts'), 'desc' => __('Multiple classes should be separated with SPACE', 'mfn-opts')))), 'offer_thumb' => array('type' => 'offer_thumb', 'title' => __('Offer Slider Thumb', 'mfn-opts'), 'size' => '1/1', 'fields' => array(array('id' => 'info', 'type' => 'info', 'desc' => __('This item can only be used <strong>once per page</strong>.', 'nhp-opts')), array('id' => 'category', 'type' => 'select', 'title' => __('Category', 'mfn-opts'), 'options' => mfn_get_categories('offer-types'), 'sub_desc' => __('Select the offer post category.', 'mfn-opts')), array('id' => 'style', 'type' => 'select', 'options' => array('' => 'Thumbnails on the left', 'bottom' => 'Thumbnails at the bottom'), 'title' => __('Style', 'mfn-opts')), array('id' => 'classes', 'type' => 'text', 'title' => __('Custom | Classes', 'mfn-opts'), 'sub_desc' => __('Custom CSS Item Classes Names', 'mfn-opts'), 'desc' => __('Multiple classes should be separated with SPACE', 'mfn-opts')))), 'opening_hours' => array('type' => 'opening_hours', 'title' => __('Opening Hours', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'title', 'type' => 'text', 'title' => __('Title', 'mfn-opts')), array('id' => 'content', 'type' => 'textarea', 'title' => __('Content', 'mfn-opts'), 'desc' => __('HTML tags allowed.', 'mfn-opts'), 'std' => '<ul><li><label>Monday - Saturday</label><span>8am - 4pm</span></li></ul>'), array('id' => 'image', 'type' => 'upload', 'title' => __('Background Image', 'mfn-opts')), array('id' => 'animate', 'type' => 'select', 'title' => __('Animation', 'mfn-opts'), 'sub_desc' => __('Entrance animation', 'mfn-opts'), 'options' => $mfn_animate), array('id' => 'classes', 'type' => 'text', 'title' => __('Custom | Classes', 'mfn-opts'), 'sub_desc' => __('Custom CSS Item Classes Names', 'mfn-opts'), 'desc' => __('Multiple classes should be separated with SPACE', 'mfn-opts')))), 'our_team' => array('type' => 'our_team', 'title' => __('Our Team', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'heading', 'type' => 'text', 'title' => __('Heading', 'mfn-opts')), array('id' => 'image', 'type' => 'upload', 'title' => __('Photo', 'mfn-opts')), array('id' => 'title', 'type' => 'text', 'title' => __('Title', 'mfn-opts'), 'sub_desc' => __('Will also be used as the image alternative text', 'mfn-opts')), array('id' => 'subtitle', 'type' => 'text', 'title' => __('Subtitle', 'mfn-opts')), array('id' => 'phone', 'type' => 'text', 'title' => __('Phone', 'mfn-opts')), array('id' => 'content', 'type' => 'textarea', 'title' => __('Content', 'mfn-opts'), 'desc' => __('Some Shortcodes and HTML tags allowed', 'mfn-opts'), 'class' => 'full-width sc'), array('id' => 'email', 'type' => 'text', 'title' => __('E-mail', 'mfn-opts')), array('id' => 'facebook', 'type' => 'text', 'title' => __('Facebook', 'mfn-opts')), array('id' => 'twitter', 'type' => 'text', 'title' => __('Twitter', 'mfn-opts')), array('id' => 'linkedin', 'type' => 'text', 'title' => __('LinkedIn', 'mfn-opts')), array('id' => 'vcard', 'type' => 'text', 'title' => __('vCard', 'mfn-opts')), array('id' => 'blockquote', 'type' => 'textarea', 'title' => __('Blockquote', 'mfn-opts')), array('id' => 'style', 'type' => 'select', 'options' => array('circle' => 'Circle', 'vertical' => 'Vertical', 'horizontal' => 'Horizontal 	[only: 1/2]'), 'title' => __('Style', 'mfn-opts'), 'std' => 'vertical'), array('id' => 'link', 'type' => 'text', 'title' => __('Link', 'mfn-opts')), array('id' => 'target', 'type' => 'select', 'title' => __('Open in new window', 'mfn-opts'), 'desc' => __('Adds a target="_blank" attribute to the link.', 'mfn-opts'), 'options' => array(0 => 'No', 1 => 'Yes')), array('id' => 'animate', 'type' => 'select', 'title' => __('Animation', 'mfn-opts'), 'sub_desc' => __('Entrance animation', 'mfn-opts'), 'options' => $mfn_animate), array('id' => 'classes', 'type' => 'text', 'title' => __('Custom | Classes', 'mfn-opts'), 'sub_desc' => __('Custom CSS Item Classes Names', 'mfn-opts'), 'desc' => __('Multiple classes should be separated with SPACE', 'mfn-opts')))), 'our_team_list' => array('type' => 'our_team_list', 'title' => __('Our Team List', 'mfn-opts'), 'size' => '1/1', 'fields' => array(array('id' => 'image', 'type' => 'upload', 'title' => __('Photo', 'mfn-opts')), array('id' => 'title', 'type' => 'text', 'title' => __('Title', 'mfn-opts'), 'sub_desc' => __('Will also be used as the image alternative text', 'mfn-opts')), array('id' => 'subtitle', 'type' => 'text', 'title' => __('Subtitle', 'mfn-opts')), array('id' => 'phone', 'type' => 'text', 'title' => __('Phone', 'mfn-opts')), array('id' => 'content', 'type' => 'textarea', 'title' => __('Content', 'mfn-opts'), 'desc' => __('Some Shortcodes and HTML tags allowed', 'mfn-opts'), 'class' => 'full-width sc'), array('id' => 'blockquote', 'type' => 'textarea', 'title' => __('Blockquote', 'mfn-opts')), array('id' => 'email', 'type' => 'text', 'title' => __('E-mail', 'mfn-opts')), array('id' => 'facebook', 'type' => 'text', 'title' => __('Facebook', 'mfn-opts')), array('id' => 'twitter', 'type' => 'text', 'title' => __('Twitter', 'mfn-opts')), array('id' => 'linkedin', 'type' => 'text', 'title' => __('LinkedIn', 'mfn-opts')), array('id' => 'vcard', 'type' => 'text', 'title' => __('vCard', 'mfn-opts')), array('id' => 'link', 'type' => 'text', 'title' => __('Link', 'mfn-opts')), array('id' => 'target', 'type' => 'select', 'title' => __('Open in new window', 'mfn-opts'), 'desc' => __('Adds a target="_blank" attribute to the link.', 'mfn-opts'), 'options' => array(0 => 'No', 1 => 'Yes')), array('id' => 'classes', 'type' => 'text', 'title' => __('Custom | Classes', 'mfn-opts'), 'sub_desc' => __('Custom CSS Item Classes Names', 'mfn-opts'), 'desc' => __('Multiple classes should be separated with SPACE', 'mfn-opts')))), 'photo_box' => array('type' => 'photo_box', 'title' => __('Photo Box', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'title', 'type' => 'text', 'title' => __('Title', 'mfn-opts')), array('id' => 'image', 'type' => 'upload', 'title' => __('Image', 'mfn-opts')), array('id' => 'content', 'type' => 'textarea', 'title' => __('Content', 'mfn-opts'), 'desc' => __('Some Shortcodes and HTML tags allowed', 'mfn-opts'), 'class' => 'full-width sc'), array('id' => 'align', 'type' => 'select', 'title' => 'Text Align', 'options' => array('' => 'Center', 'left' => 'Left', 'right' => 'Right')), array('id' => 'link', 'type' => 'text', 'title' => __('Link', 'mfn-opts')), array('id' => 'target', 'type' => 'select', 'title' => __('Open in new window', 'mfn-opts'), 'desc' => __('Adds a target="_blank" attribute to the link.', 'mfn-opts'), 'options' => array(0 => 'No', 1 => 'Yes')), array('id' => 'greyscale', 'type' => 'select', 'title' => 'Greyscale Images', 'desc' => 'Works only for images with link', 'options' => array(0 => 'No', 1 => 'Yes')), array('id' => 'animate', 'type' => 'select', 'title' => __('Animation', 'mfn-opts'), 'sub_desc' => __('Entrance animation', 'mfn-opts'), 'options' => $mfn_animate), array('id' => 'classes', 'type' => 'text', 'title' => __('Custom | Classes', 'mfn-opts'), 'sub_desc' => __('Custom CSS Item Classes Names', 'mfn-opts'), 'desc' => __('Multiple classes should be separated with SPACE', 'mfn-opts')))), 'portfolio' => array('type' => 'portfolio', 'title' => __('Portfolio', 'mfn-opts'), 'size' => '1/1', 'fields' => array(array('id' => 'count', 'type' => 'text', 'title' => __('Count', 'mfn-opts'), 'std' => '2', 'class' => 'small-text'), array('id' => 'category', 'type' => 'select', 'title' => __('Category', 'mfn-opts'), 'options' => mfn_get_categories('portfolio-types'), 'sub_desc' => __('Select the portfolio post category.', 'mfn-opts')), array('id' => 'category_multi', 'type' => 'text', 'title' => __('Multiple Categories', 'mfn-opts'), 'sub_desc' => __('Categories Slugs', 'mfn-opts'), 'desc' => __('Slugs should be separated with <strong>coma</strong> (,).', 'mfn-opts')), array('id' => 'style', 'type' => 'select', 'title' => 'Style', 'options' => array('flat' => 'Flat', 'grid' => 'Grid', 'masonry' => 'Masonry Blog Style', 'masonry-hover' => 'Masonry Hover Description', 'list' => 'List', 'masonry-flat' => 'Masonry Flat'), 'std' => 'grid'), array('id' => 'columns', 'type' => 'select', 'title' => __('Columns', 'mfn-opts'), 'desc' => __('Default: 3. Recommended: 2-4. Too large value may crash the layout.<br />This option works in styles: <b>Flat, Grid, Masonry Blog Style, Masonry Hover Details</b>', 'mfn-opts'), 'options' => array(2 => 2, 3 => 3, 4 => 4, 5 => 5, 6 => 6), 'std' => 3), array('id' => 'greyscale', 'type' => 'select', 'title' => 'Greyscale Images', 'options' => array(0 => 'No', 1 => 'Yes')), array('id' => 'orderby', 'type' => 'select', 'title' => __('Order by', 'mfn-opts'), 'sub_desc' => __('Portfolio items order by column.', 'mfn-opts'), 'options' => array('date' => 'Date', 'menu_order' => 'Menu order', 'title' => 'Title', 'rand' => 'Random'), 'std' => 'date'), array('id' => 'order', 'type' => 'select', 'title' => __('Order', 'mfn-opts'), 'sub_desc' => __('Portfolio items order.', 'mfn-opts'), 'options' => array('ASC' => 'Ascending', 'DESC' => 'Descending'), 'std' => 'DESC'), array('id' => 'filters', 'type' => 'select', 'options' => array(0 => 'No', 1 => 'Yes'), 'title' => __('Show | Filters', 'mfn-opts'), 'desc' => __('Works only with <b>Category: All</b>', 'mfn-opts')), array('id' => 'pagination', 'type' => 'select', 'options' => array(0 => 'No', 1 => 'Yes'), 'title' => __('Show | Pagination', 'mfn-opts'), 'desc' => __('<strong>Notice:</strong> Pagination will <strong>not</strong> work if you put item on Homepage of WordPress Multilangual Site.', 'mfn-opts')), array('id' => 'load_more', 'type' => 'select', 'title' => __('Show | Load More button', 'mfn-opts'), 'sub_desc' => __('Show Ajax Load More button', 'mfn-opts'), 'desc' => __('This will replace all sliders on list with featured images. Please also <b>show Pagination</b>', 'mfn-opts'), 'options' => array(0 => 'No', 1 => 'Yes')), array('id' => 'classes', 'type' => 'text', 'title' => __('Custom | Classes', 'mfn-opts'), 'sub_desc' => __('Custom CSS Item Classes Names', 'mfn-opts'), 'desc' => __('Multiple classes should be separated with SPACE', 'mfn-opts')))), 'portfolio_grid' => array('type' => 'portfolio_grid', 'title' => __('Portfolio Grid', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'count', 'type' => 'text', 'title' => __('Count', 'mfn-opts'), 'std' => '4', 'class' => 'small-text'), array('id' => 'category', 'type' => 'select', 'title' => __('Category', 'mfn-opts'), 'options' => mfn_get_categories('portfolio-types'), 'sub_desc' => __('Select the portfolio post category.', 'mfn-opts')), array('id' => 'category_multi', 'type' => 'text', 'title' => __('Multiple Categories', 'mfn-opts'), 'sub_desc' => __('Categories Slugs', 'mfn-opts'), 'desc' => __('Slugs should be separated with <strong>coma</strong> (,).', 'mfn-opts')), array('id' => 'orderby', 'type' => 'select', 'title' => __('Order by', 'mfn-opts'), 'sub_desc' => __('Portfolio items order by column.', 'mfn-opts'), 'options' => array('date' => 'Date', 'menu_order' => 'Menu order', 'title' => 'Title', 'rand' => 'Random'), 'std' => 'date'), array('id' => 'order', 'type' => 'select', 'title' => __('Order', 'mfn-opts'), 'sub_desc' => __('Portfolio items order.', 'mfn-opts'), 'options' => array('ASC' => 'Ascending', 'DESC' => 'Descending'), 'std' => 'DESC'), array('id' => 'greyscale', 'type' => 'select', 'title' => 'Greyscale Images', 'options' => array(0 => 'No', 1 => 'Yes')), array('id' => 'classes', 'type' => 'text', 'title' => __('Custom | Classes', 'mfn-opts'), 'sub_desc' => __('Custom CSS Item Classes Names', 'mfn-opts'), 'desc' => __('Multiple classes should be separated with SPACE', 'mfn-opts')))), 'portfolio_photo' => array('type' => 'portfolio_photo', 'title' => __('Portfolio Photo', 'mfn-opts'), 'size' => '1/1', 'fields' => array(array('id' => 'count', 'type' => 'text', 'title' => __('Count', 'mfn-opts'), 'std' => '5', 'class' => 'small-text'), array('id' => 'category', 'type' => 'select', 'title' => __('Category', 'mfn-opts'), 'options' => mfn_get_categories('portfolio-types'), 'sub_desc' => __('Select the portfolio post category.', 'mfn-opts')), array('id' => 'category_multi', 'type' => 'text', 'title' => __('Multiple Categories', 'mfn-opts'), 'sub_desc' => __('Categories Slugs', 'mfn-opts'), 'desc' => __('Slugs should be separated with <strong>coma</strong> (,).', 'mfn-opts')), array('id' => 'orderby', 'type' => 'select', 'title' => __('Order by', 'mfn-opts'), 'sub_desc' => __('Portfolio items order by column.', 'mfn-opts'), 'options' => array('date' => 'Date', 'menu_order' => 'Menu order', 'title' => 'Title'), 'std' => 'date'), array('id' => 'order', 'type' => 'select', 'title' => __('Order', 'mfn-opts'), 'sub_desc' => __('Portfolio items order.', 'mfn-opts'), 'options' => array('ASC' => 'Ascending', 'DESC' => 'Descending'), 'std' => 'DESC'), array('id' => 'target', 'type' => 'select', 'title' => __('Open in new window', 'mfn-opts'), 'desc' => __('Adds a target="_blank" attribute to the link.', 'mfn-opts'), 'options' => array(0 => 'No', 1 => 'Yes')), array('id' => 'greyscale', 'type' => 'select', 'title' => 'Greyscale Images', 'options' => array(0 => 'No', 1 => 'Yes')), array('id' => 'classes', 'type' => 'text', 'title' => __('Custom | Classes', 'mfn-opts'), 'sub_desc' => __('Custom CSS Item Classes Names', 'mfn-opts'), 'desc' => __('Multiple classes should be separated with SPACE', 'mfn-opts')))), 'portfolio_slider' => array('type' => 'portfolio_slider', 'title' => __('Portfolio Slider', 'mfn-opts'), 'size' => '1/1', 'fields' => array(array('id' => 'count', 'type' => 'text', 'title' => __('Count', 'mfn-opts'), 'desc' => __('We <strong>do not</strong> recommend use more than 10 items, because site will be working slowly.', 'mfn-opts'), 'std' => '6', 'class' => 'small-text'), array('id' => 'category', 'type' => 'select', 'title' => __('Category', 'mfn-opts'), 'options' => mfn_get_categories('portfolio-types'), 'sub_desc' => __('Select the portfolio post category.', 'mfn-opts')), array('id' => 'category_multi', 'type' => 'text', 'title' => __('Multiple Categories', 'mfn-opts'), 'sub_desc' => __('Categories Slugs', 'mfn-opts'), 'desc' => __('Slugs should be separated with <strong>coma</strong> (,).', 'mfn-opts')), array('id' => 'orderby', 'type' => 'select', 'title' => __('Order by', 'mfn-opts'), 'sub_desc' => __('Portfolio items order by column.', 'mfn-opts'), 'options' => array('date' => 'Date', 'menu_order' => 'Menu order', 'title' => 'Title'), 'std' => 'date'), array('id' => 'order', 'type' => 'select', 'title' => __('Order', 'mfn-opts'), 'sub_desc' => __('Portfolio items order.', 'mfn-opts'), 'options' => array('ASC' => 'Ascending', 'DESC' => 'Descending'), 'std' => 'DESC'), array('id' => 'arrows', 'type' => 'select', 'title' => __('Navigation Arrows', 'mfn-opts'), 'sub_desc' => __('Show Navigation Arrows', 'mfn-opts'), 'options' => array('' => 'None', 'hover' => 'Show on hover', 'always' => 'Always show'), 'std' => 'DESC'), array('id' => 'classes', 'type' => 'text', 'title' => __('Custom | Classes', 'mfn-opts'), 'sub_desc' => __('Custom CSS Item Classes Names', 'mfn-opts'), 'desc' => __('Multiple classes should be separated with SPACE', 'mfn-opts')))), 'pricing_item' => array('type' => 'pricing_item', 'title' => __('Pricing Item', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'image', 'type' => 'upload', 'title' => __('Image', 'mfn-opts')), array('id' => 'title', 'type' => 'text', 'title' => __('Title', 'mfn-opts'), 'sub_desc' => __('Pricing item title', 'mfn-opts')), array('id' => 'price', 'type' => 'text', 'title' => __('Price', 'mfn-opts'), 'class' => 'small-text'), array('id' => 'currency', 'type' => 'text', 'title' => __('Currency', 'mfn-opts'), 'class' => 'small-text'), array('id' => 'currency_pos', 'type' => 'select', 'title' => __('Currency | Position', 'mfn-opts'), 'options' => array('' => 'Left', 'right' => 'Right')), array('id' => 'period', 'type' => 'text', 'title' => __('Period', 'mfn-opts'), 'class' => 'small-text'), array('id' => 'subtitle', 'type' => 'text', 'title' => __('Subtitle', 'mfn-opts')), array('id' => 'content', 'type' => 'textarea', 'title' => __('Content', 'mfn-opts'), 'desc' => __('HTML tags allowed.', 'mfn-opts'), 'std' => '<ul><li><strong>List</strong> item</li></ul>'), array('id' => 'link_title', 'type' => 'text', 'title' => __('Button Title', 'mfn-opts'), 'desc' => __('Button will appear only if this field will be filled.', 'mfn-opts')), array('id' => 'link', 'type' => 'text', 'title' => __('Button Link', 'mfn-opts'), 'desc' => __('Button will appear only if this field will be filled.', 'mfn-opts')), array('id' => 'icon', 'type' => 'icon', 'title' => __('Button Icon', 'mfn-opts'), 'class' => 'small-text'), array('id' => 'target', 'type' => 'select', 'title' => __('Open in new window', 'mfn-opts'), 'desc' => __('Adds a target="_blank" attribute to the link.', 'mfn-opts'), 'options' => array(0 => 'No', 1 => 'Yes')), array('id' => 'featured', 'type' => 'select', 'title' => __('Featured', 'mfn-opts'), 'options' => array(0 => 'No', 1 => 'Yes')), array('id' => 'style', 'type' => 'select', 'title' => __('Style', 'mfn-opts'), 'options' => array('box' => 'Box', 'label' => 'Table Label', 'table' => 'Table')), array('id' => 'animate', 'type' => 'select', 'title' => __('Animation', 'mfn-opts'), 'sub_desc' => __('Entrance animation', 'mfn-opts'), 'options' => $mfn_animate), array('id' => 'classes', 'type' => 'text', 'title' => __('Custom | Classes', 'mfn-opts'), 'sub_desc' => __('Custom CSS Item Classes Names', 'mfn-opts'), 'desc' => __('Multiple classes should be separated with SPACE', 'mfn-opts')))), 'progress_bars' => array('type' => 'progress_bars', 'title' => __('Progress Bars', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'title', 'type' => 'text', 'title' => __('Title', 'mfn-opts')), array('id' => 'content', 'type' => 'textarea', 'title' => __('Content', 'mfn-opts'), 'desc' => __('Please use <strong>[bar title="Title" value="50"]</strong> shortcodes here.', 'mfn-opts'), 'std' => '[bar title="Bar1" value="50"]' . "\n" . '[bar title="Bar2" value="60"]'), array('id' => 'classes', 'type' => 'text', 'title' => __('Custom | Classes', 'mfn-opts'), 'sub_desc' => __('Custom CSS Item Classes Names', 'mfn-opts'), 'desc' => __('Multiple classes should be separated with SPACE', 'mfn-opts')))), 'promo_box' => array('type' => 'promo_box', 'title' => __('Promo Box', 'mfn-opts'), 'size' => '1/2', 'fields' => array(array('id' => 'image', 'type' => 'upload', 'title' => __('Image', 'mfn-opts')), array('id' => 'title', 'type' => 'text', 'title' => __('Title', 'mfn-opts')), array('id' => 'content', 'type' => 'textarea', 'title' => __('Content', 'mfn-opts'), 'desc' => __('Some Shortcodes and HTML tags allowed', 'mfn-opts'), 'class' => 'full-width sc'), array('id' => 'btn_text', 'type' => 'text', 'title' => __('Button Text', 'mfn-opts'), 'class' => 'small-text'), array('id' => 'btn_link', 'type' => 'text', 'title' => __('Button Link', 'mfn-opts'), 'class' => 'small-text'), array('id' => 'target', 'type' => 'select', 'title' => __('Open in new window', 'mfn-opts'), 'desc' => __('Adds a target="_blank" attribute to the link.', 'mfn-opts'), 'options' => array(0 => 'No', 1 => 'Yes')), array('id' => 'position', 'type' => 'select', 'title' => __('Image position', 'mfn-opts'), 'options' => array('left' => 'Left', 'right' => 'Right'), 'std' => 'left'), array('id' => 'border', 'type' => 'select', 'title' => __('Border', 'mfn-opts'), 'sub_desc' => __('Show right border', 'mfn-opts'), 'options' => array(0 => 'No', 1 => 'Yes'), 'std' => 'no_border'), array('id' => 'animate', 'type' => 'select', 'title' => __('Animation', 'mfn-opts'), 'sub_desc' => __('Entrance animation', 'mfn-opts'), 'options' => $mfn_animate), array('id' => 'classes', 'type' => 'text', 'title' => __('Custom | Classes', 'mfn-opts'), 'sub_desc' => __('Custom CSS Item Classes Names', 'mfn-opts'), 'desc' => __('Multiple classes should be separated with SPACE', 'mfn-opts')))), 'quick_fact' => array('type' => 'quick_fact', 'title' => __('Quick Fact', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'heading', 'type' => 'text', 'title' => __('Heading', 'mfn-opts')), array('id' => 'number', 'type' => 'text', 'title' => __('Number', 'mfn-opts'), 'class' => 'small-text'), array('id' => 'prefix', 'type' => 'text', 'title' => __('Prefix', 'mfn-opts'), 'class' => 'small-text'), array('id' => 'label', 'type' => 'text', 'title' => __('Postfix', 'mfn-opts'), 'class' => 'small-text'), array('id' => 'title', 'type' => 'text', 'title' => __('Title', 'mfn-opts')), array('id' => 'content', 'type' => 'textarea', 'title' => __('Content', 'mfn-opts'), 'desc' => __('Some Shortcodes and HTML tags allowed', 'mfn-opts'), 'class' => 'full-width sc', 'validate' => 'html'), array('id' => 'animate', 'type' => 'select', 'title' => __('Animation', 'mfn-opts'), 'sub_desc' => __('Entrance animation', 'mfn-opts'), 'options' => $mfn_animate), array('id' => 'classes', 'type' => 'text', 'title' => __('Custom | Classes', 'mfn-opts'), 'sub_desc' => __('Custom CSS Item Classes Names', 'mfn-opts'), 'desc' => __('Multiple classes should be separated with SPACE', 'mfn-opts')))), 'shop_slider' => array('type' => 'shop_slider', 'title' => __('Shop Slider', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'title', 'type' => 'text', 'title' => __('Title', 'mfn-opts')), array('id' => 'count', 'type' => 'text', 'title' => __('Count', 'mfn-opts'), 'sub_desc' => __('Number of posts to show', 'mfn-opts'), 'desc' => __('We <strong>do not</strong> recommend use more than 10 items, because site will be working slowly.', 'mfn-opts'), 'std' => '5', 'class' => 'small-text'), array('id' => 'show', 'type' => 'select', 'title' => __('Show', 'mfn-opts'), 'options' => array('' => 'All (or category selected below)', 'featured' => 'Featured', 'onsale' => 'Onsale', 'best-selling' => 'Best Selling (Order by: Sales)')), array('id' => 'category', 'type' => 'select', 'title' => __('Category', 'mfn-opts'), 'options' => mfn_get_categories('product_cat'), 'sub_desc' => __('Select the products category', 'mfn-opts')), array('id' => 'orderby', 'type' => 'select', 'title' => __('Order by', 'mfn-opts'), 'sub_desc' => __('Slides order by column', 'mfn-opts'), 'options' => array('date' => 'Date', 'menu_order' => 'Menu order', 'title' => 'Title'), 'std' => 'date'), array('id' => 'order', 'type' => 'select', 'title' => __('Order', 'mfn-opts'), 'sub_desc' => __('Slides order', 'mfn-opts'), 'options' => array('ASC' => 'Ascending', 'DESC' => 'Descending'), 'std' => 'DESC'), array('id' => 'classes', 'type' => 'text', 'title' => __('Custom | Classes', 'mfn-opts'), 'sub_desc' => __('Custom CSS Item Classes Names', 'mfn-opts'), 'desc' => __('Multiple classes should be separated with SPACE', 'mfn-opts')))), 'sidebar_widget' => array('type' => 'sidebar_widget', 'title' => __('Sidebar Widget', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'sidebar', 'type' => 'select', 'title' => __('Select Sidebar', 'mfn-opts'), 'desc' => __('1. Create Sidebar in Theme Options > Getting Started > Sidebars.<br />2. Add Widget.<br />3. Select your sidebar.', 'mfn-opts'), 'options' => mfn_opts_get('sidebars')), array('id' => 'classes', 'type' => 'text', 'title' => __('Custom | Classes', 'mfn-opts'), 'sub_desc' => __('Custom CSS Item Classes Names', 'mfn-opts'), 'desc' => __('Multiple classes should be separated with SPACE', 'mfn-opts')))), 'slider' => array('type' => 'slider', 'title' => __('Slider', 'mfn-opts'), 'size' => '1/1', 'fields' => array(array('id' => 'style', 'type' => 'select', 'options' => array('' => 'Default', 'description' => 'Description', 'flat' => 'Flat', 'carousel' => 'Carousel'), 'title' => __('Style', 'mfn-opts')), array('id' => 'category', 'type' => 'select', 'title' => __('Category', 'mfn-opts'), 'options' => mfn_get_categories('slide-types'), 'sub_desc' => __('Select the slides category', 'mfn-opts')), array('id' => 'orderby', 'type' => 'select', 'title' => __('Order by', 'mfn-opts'), 'sub_desc' => __('Slides order by column', 'mfn-opts'), 'options' => array('date' => 'Date', 'menu_order' => 'Menu order', 'title' => 'Title'), 'std' => 'date'), array('id' => 'order', 'type' => 'select', 'title' => __('Order', 'mfn-opts'), 'sub_desc' => __('Slides order', 'mfn-opts'), 'options' => array('ASC' => 'Ascending', 'DESC' => 'Descending'), 'std' => 'DESC'), array('id' => 'classes', 'type' => 'text', 'title' => __('Custom | Classes', 'mfn-opts'), 'sub_desc' => __('Custom CSS Item Classes Names', 'mfn-opts'), 'desc' => __('Multiple classes should be separated with SPACE', 'mfn-opts')))), 'slider_plugin' => array('type' => 'slider_plugin', 'title' => __('Slider Plugin', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'rev', 'type' => 'select', 'title' => __('Slider | Revolution Slider', 'mfn-opts'), 'desc' => __('Select one from the list of available <a target="_blank" href="admin.php?page=revslider">Revolution Sliders</a>', 'mfn-opts'), 'options' => mfn_get_sliders()), array('id' => 'layer', 'type' => 'select', 'title' => __('Slider | Layer Slider', 'mfn-opts'), 'desc' => __('Select one from the list of available <a target="_blank" href="admin.php?page=layerslider">Layer Sliders</a>', 'mfn-opts'), 'options' => mfn_get_sliders_layer()), array('id' => 'classes', 'type' => 'text', 'title' => __('Custom | Classes', 'mfn-opts'), 'sub_desc' => __('Custom CSS Item Classes Names', 'mfn-opts'), 'desc' => __('Multiple classes should be separated with SPACE', 'mfn-opts')))), 'sliding_box' => array('type' => 'sliding_box', 'title' => __('Sliding Box', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'image', 'type' => 'upload', 'title' => __('Image', 'mfn-opts')), array('id' => 'title', 'type' => 'text', 'title' => __('Title', 'mfn-opts')), array('id' => 'link', 'type' => 'text', 'title' => __('Link', 'mfn-opts')), array('id' => 'target', 'type' => 'select', 'options' => array(0 => 'No', 1 => 'Yes'), 'title' => __('Open in new window', 'mfn-opts'), 'desc' => __('Adds a target="_blank" attribute to the link.', 'mfn-opts')), array('id' => 'animate', 'type' => 'select', 'title' => __('Animation', 'mfn-opts'), 'sub_desc' => __('Entrance animation', 'mfn-opts'), 'options' => $mfn_animate), array('id' => 'classes', 'type' => 'text', 'title' => __('Custom | Classes', 'mfn-opts'), 'sub_desc' => __('Custom CSS Item Classes Names', 'mfn-opts'), 'desc' => __('Multiple classes should be separated with SPACE', 'mfn-opts')))), 'story_box' => array('type' => 'story_box', 'title' => __('Story Box', 'mfn-opts'), 'size' => '1/2', 'fields' => array(array('id' => 'image', 'type' => 'upload', 'title' => __('Image', 'mfn-opts')), array('id' => 'style', 'type' => 'select', 'options' => array('' => 'Horizontal Image', 'flat' => 'Flat'), 'title' => __('Style', 'mfn-opts')), array('id' => 'title', 'type' => 'text', 'title' => __('Title', 'mfn-opts')), array('id' => 'content', 'type' => 'textarea', 'title' => __('Content', 'mfn-opts'), 'desc' => __('Some Shortcodes and HTML tags allowed', 'mfn-opts'), 'class' => 'full-width sc', 'validate' => 'html'), array('id' => 'link', 'type' => 'text', 'title' => __('Link', 'mfn-opts')), array('id' => 'target', 'type' => 'select', 'options' => array(0 => 'No', 1 => 'Yes'), 'title' => __('Open in new window', 'mfn-opts'), 'desc' => __('Adds a target="_blank" attribute to the link.', 'mfn-opts')), array('id' => 'animate', 'type' => 'select', 'title' => __('Animation', 'mfn-opts'), 'sub_desc' => __('Entrance animation', 'mfn-opts'), 'options' => $mfn_animate), array('id' => 'classes', 'type' => 'text', 'title' => __('Custom | Classes', 'mfn-opts'), 'sub_desc' => __('Custom CSS Item Classes Names', 'mfn-opts'), 'desc' => __('Multiple classes should be separated with SPACE', 'mfn-opts')))), 'tabs' => array('type' => 'tabs', 'title' => __('Tabs', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'title', 'type' => 'text', 'title' => __('Title', 'mfn-opts')), array('id' => 'tabs', 'type' => 'tabs', 'title' => __('Tabs', 'mfn-opts'), 'sub_desc' => __('To add an <strong>icon</strong> in Title field, please use the following code:<br/><br/>&lt;i class=" icon-lamp"&gt;&lt;/i&gt; Tab Title', 'mfn-opts'), 'desc' => __('You can use Drag & Drop to set the order.', 'mfn-opts')), array('id' => 'type', 'type' => 'select', 'options' => array('horizontal' => 'Horizontal', 'vertical' => 'Vertical'), 'title' => __('Style', 'mfn-opts'), 'desc' => __('Vertical tabs works only for column widths: 1/2, 3/4 & 1/1', 'mfn-opts')), array('id' => 'uid', 'type' => 'text', 'title' => __('Unique ID [optional]', 'mfn-opts'), 'sub_desc' => __('Allowed characters: "a-z" "-" "_"', 'mfn-opts'), 'desc' => __('Use this option if you want to open specified tab from link.<br />For example: Your Unique ID is <strong>offer</strong> and you want to open 2nd tab, please use link: <strong>your-url/#offer-2</strong>', 'mfn-opts')), array('id' => 'classes', 'type' => 'text', 'title' => __('Custom | Classes', 'mfn-opts'), 'sub_desc' => __('Custom CSS Item Classes Names', 'mfn-opts'), 'desc' => __('Multiple classes should be separated with SPACE', 'mfn-opts')))), 'testimonials' => array('type' => 'testimonials', 'title' => __('Testimonials', 'mfn-opts'), 'size' => '1/1', 'fields' => array(array('id' => 'category', 'type' => 'select', 'title' => __('Category', 'mfn-opts'), 'options' => mfn_get_categories('testimonial-types'), 'sub_desc' => __('Select the testimonial post category.', 'mfn-opts')), array('id' => 'orderby', 'type' => 'select', 'title' => __('Order by', 'mfn-opts'), 'sub_desc' => __('Testimonials order by column.', 'mfn-opts'), 'options' => array('date' => 'Date', 'menu_order' => 'Menu order', 'title' => 'Title'), 'std' => 'date'), array('id' => 'order', 'type' => 'select', 'title' => __('Order', 'mfn-opts'), 'sub_desc' => __('Testimonials order.', 'mfn-opts'), 'options' => array('ASC' => 'Ascending', 'DESC' => 'Descending'), 'std' => 'DESC'), array('id' => 'style', 'type' => 'select', 'title' => __('Style', 'mfn-opts'), 'options' => array('' => __('Default', 'mfn-opts'), 'single-photo' => __('Single Photo', 'mfn-opts'))), array('id' => 'hide_photos', 'type' => 'select', 'options' => array(0 => 'No', 1 => 'Yes'), 'title' => __('Hide Photos', 'mfn-opts')), array('id' => 'classes', 'type' => 'text', 'title' => __('Custom | Classes', 'mfn-opts'), 'sub_desc' => __('Custom CSS Item Classes Names', 'mfn-opts'), 'desc' => __('Multiple classes should be separated with SPACE', 'mfn-opts')))), 'testimonials_list' => array('type' => 'testimonials_list', 'title' => __('Testimonials List', 'mfn-opts'), 'size' => '1/1', 'fields' => array(array('id' => 'category', 'type' => 'select', 'title' => __('Category', 'mfn-opts'), 'options' => mfn_get_categories('testimonial-types'), 'sub_desc' => __('Select the testimonial post category.', 'mfn-opts')), array('id' => 'orderby', 'type' => 'select', 'title' => __('Order by', 'mfn-opts'), 'sub_desc' => __('Testimonials order by column.', 'mfn-opts'), 'options' => array('date' => 'Date', 'menu_order' => 'Menu order', 'title' => 'Title'), 'std' => 'date'), array('id' => 'order', 'type' => 'select', 'title' => __('Order', 'mfn-opts'), 'sub_desc' => __('Testimonials order.', 'mfn-opts'), 'options' => array('ASC' => 'Ascending', 'DESC' => 'Descending'), 'std' => 'DESC'), array('id' => 'classes', 'type' => 'text', 'title' => __('Custom | Classes', 'mfn-opts'), 'sub_desc' => __('Custom CSS Item Classes Names', 'mfn-opts'), 'desc' => __('Multiple classes should be separated with SPACE', 'mfn-opts')))), 'timeline' => array('type' => 'timeline', 'title' => __('Timeline', 'mfn-opts'), 'size' => '1/1', 'fields' => array(array('id' => 'tabs', 'type' => 'tabs', 'title' => __('Timeline', 'mfn-opts'), 'sub_desc' => __('Please add <strong>date</strong> wrapped into <strong>span</strong> tag in Title field.<br/><br/>&lt;span&gt;2013&lt;/span&gt;Event Title', 'mfn-opts'), 'desc' => __('You can use Drag & Drop to set the order.', 'mfn-opts')), array('id' => 'classes', 'type' => 'text', 'title' => __('Custom | Classes', 'mfn-opts'), 'sub_desc' => __('Custom CSS Item Classes Names', 'mfn-opts'), 'desc' => __('Multiple classes should be separated with SPACE', 'mfn-opts')))), 'trailer_box' => array('type' => 'trailer_box', 'title' => __('Trailer Box', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'image', 'type' => 'upload', 'title' => __('Image', 'mfn-opts')), array('id' => 'slogan', 'type' => 'text', 'title' => __('Slogan', 'mfn-opts')), array('id' => 'title', 'type' => 'text', 'title' => __('Title', 'mfn-opts')), array('id' => 'link', 'type' => 'text', 'title' => __('Link', 'mfn-opts')), array('id' => 'target', 'type' => 'select', 'options' => array(0 => 'No', 1 => 'Yes'), 'title' => __('Open in new window', 'mfn-opts'), 'desc' => __('Adds a target="_blank" attribute to the link.', 'mfn-opts')), array('id' => 'animate', 'type' => 'select', 'title' => __('Animation', 'mfn-opts'), 'desc' => __('<b>Notice:</b> In some versions of Safari browser Hover works only if you select: <b>Not Animated</b> or <b>Fade In</b>', 'mfn-opts'), 'sub_desc' => __('Entrance animation', 'mfn-opts'), 'options' => $mfn_animate), array('id' => 'classes', 'type' => 'text', 'title' => __('Custom | Classes', 'mfn-opts'), 'sub_desc' => __('Custom CSS Item Classes Names', 'mfn-opts'), 'desc' => __('Multiple classes should be separated with SPACE', 'mfn-opts')))), 'video' => array('type' => 'video', 'title' => __('Video', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'video', 'type' => 'text', 'title' => __('YouTube or Vimeo | Video ID', 'mfn-opts'), 'sub_desc' => __('YouTube or Vimeo', 'mfn-opts'), 'desc' => __('It`s placed in every YouTube & Vimeo video, for example:<br /><b>YouTube:</b> http://www.youtube.com/watch?v=<u>WoJhnRczeNg</u><br /><b>Vimeo:</b> http://vimeo.com/<u>62954028</u>', 'mfn-opts'), 'class' => 'small-text'), array('id' => 'parameters', 'type' => 'text', 'title' => __('YouTube or Vimeo | Parameters', 'mfn-opts'), 'sub_desc' => __('YouTube or Vimeo', 'mfn-opts'), 'desc' => __('Multiple parameters should be connected with "&"<br />For example: <b>autoplay=1&loop=1</b>', 'mfn-opts')), array('id' => 'mp4', 'type' => 'upload', 'title' => __('HTML5 | MP4 video', 'mfn-opts'), 'sub_desc' => __('m4v [.mp4]', 'mfn-opts'), 'desc' => __('Please add both mp4 and ogv for cross-browser compatibility.', 'mfn-opts'), 'class' => __('video', 'mfn-opts')), array('id' => 'ogv', 'type' => 'upload', 'title' => __('HTML5 | OGV video', 'mfn-opts'), 'sub_desc' => __('ogg [.ogv]', 'mfn-opts'), 'class' => __('video', 'mfn-opts')), array('id' => 'placeholder', 'type' => 'upload', 'title' => __('HTML5 | Placeholder image', 'mfn-opts'), 'desc' => __('Placeholder Image will be used as video placeholder before video loads and on mobile devices.', 'mfn-opts')), array('id' => 'html5_parameters', 'type' => 'select', 'title' => __('HTML5 | Parameters', 'mfn-opts'), 'options' => array('' => 'autoplay controls loop muted', 'a;c;l;' => 'autoplay controls loop', 'a;c;;m' => 'autoplay controls muted', 'a;;l;m' => 'autoplay loop muted', 'a;c;;' => 'autoplay controls', 'a;;l;' => 'autoplay loop', 'a;;;m' => 'autoplay muted', 'a;;;' => 'autoplay', ';c;l;m' => 'controls loop muted', ';c;l;' => 'controls loop', ';c;;m' => 'controls muted', ';c;;' => 'controls')), array('id' => 'width', 'type' => 'text', 'title' => __('Width', 'mfn-opts'), 'desc' => __('px', 'mfn-opts'), 'class' => 'small-text', 'std' => 700), array('id' => 'height', 'type' => 'text', 'title' => __('Height', 'mfn-opts'), 'desc' => __('px', 'mfn-opts'), 'class' => 'small-text', 'std' => 400), array('id' => 'classes', 'type' => 'text', 'title' => __('Custom | Classes', 'mfn-opts'), 'sub_desc' => __('Custom CSS Item Classes Names', 'mfn-opts'), 'desc' => __('Multiple classes should be separated with SPACE', 'mfn-opts')))), 'visual' => array('type' => 'visual', 'title' => __('Visual Editor', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'title', 'type' => 'text', 'title' => __('Title', 'mfn-opts'), 'desc' => __('This field is used as an Item Label in admin panel only and shows after page update.', 'mfn-opts')), array('id' => 'content', 'type' => 'textarea', 'title' => __('Visual Editor', 'mfn-opts'), 'param' => 'editor', 'validate' => 'html'), array('id' => 'classes', 'type' => 'text', 'title' => __('Custom | Classes', 'mfn-opts'), 'sub_desc' => __('Custom CSS Item Classes Names', 'mfn-opts'), 'desc' => __('Multiple classes should be separated with SPACE', 'mfn-opts')))), 'zoom_box' => array('type' => 'zoom_box', 'title' => __('Zoom Box', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'image', 'type' => 'upload', 'title' => __('Image', 'mfn-opts')), array('id' => 'bg_color', 'type' => 'text', 'title' => __('Overlay background', 'mfn-opts'), 'desc' => __('Use color HEX (ie. "#000000").', 'mfn-opts'), 'class' => 'small-text', 'std' => '#000000'), array('id' => 'content_image', 'type' => 'upload', 'title' => __('Content Image', 'mfn-opts')), array('id' => 'content', 'type' => 'textarea', 'title' => __('Content', 'mfn-opts'), 'desc' => __('HTML tags allowed', 'mfn-opts'), 'class' => 'full-width'), array('id' => 'link', 'type' => 'text', 'title' => __('Link', 'mfn-opts')), array('id' => 'target', 'type' => 'select', 'title' => __('Link | Target', 'mfn-opts'), 'options' => array(0 => 'Default | _self', 1 => 'New Tab or Window | _blank', 'prettyphoto' => 'prettyPhoto (images and embed video)')), array('id' => 'classes', 'type' => 'text', 'title' => __('Custom | Classes', 'mfn-opts'), 'sub_desc' => __('Custom CSS Item Classes Names', 'mfn-opts'), 'desc' => __('Multiple classes should be separated with SPACE', 'mfn-opts')))));
        // GET Sections & Items
        $mfn_items_serial = get_post_meta($post->ID, 'mfn-page-items', true);
        $mfn_tmp_fn = 'base' . '64_decode';
        $mfn_items = unserialize(call_user_func($mfn_tmp_fn, $mfn_items_serial));
        // OLD Content Builder 1.0 Compatibility
        if (is_array($mfn_items) && !key_exists('attr', $mfn_items[0])) {
            $mfn_items_builder2 = array('attr' => $mfn_std_section, 'items' => $mfn_items);
            $mfn_items = array($mfn_items_builder2);
        }
        // 	print_r($mfn_items);
        $mfn_sections_count = is_array($mfn_items) ? count($mfn_items) : 0;
        // builder visibility
        if ($visibility = mfn_opts_get('builder-visibility')) {
            if ($visibility == 'hide' || !current_user_can($visibility)) {
                return false;
            }
        }
        ?>
		<div id="mfn-builder">
			<input type="hidden" id="mfn-row-id" value="<?php 
        echo $mfn_sections_count;
        ?>
" />
			<a id="mfn-go-to-top" href="javascript:void(0);">Go to top</a>
		
			<div id="mfn-content">
	
				<!-- .mfn-row-add ================================================ -->			
				<div class="mfn-row-add">
					<table class="form-table">
						<tbody>
							<tr valign="top">
								<td>
									<a class="btn-blue mfn-row-add-btn" href="javascript:void(0);"><em></em><?php 
        _e('Add Section', 'mfn-opts');
        ?>
</a>
									<div class="logo">Muffin Group | Muffin Builder</div>
								</td>
							</tr>
						</tbody>
					</table>
				</div>
				
				
				<!-- #mfn-desk ================================================== -->
				<div id="mfn-desk" class="clearfix">
				
					<?php 
        for ($i = 0; $i < $mfn_sections_count; $i++) {
            mfn_builder_section($mfn_std_items, $mfn_std_section, $mfn_items[$i], $i + 1);
        }
        ?>
				
				</div>
				
				
				<!-- #mfn-rows ================================================= -->
				<div id="mfn-rows" class="clearfix">
					<?php 
        mfn_builder_section($mfn_std_items, $mfn_std_section);
        ?>
				</div>
							
				
				<!-- #mfn-items =============================================== -->
				<div id="mfn-items" class="clearfix">
					<?php 
        foreach ($mfn_std_items as $item) {
            mfn_builder_item($item);
        }
        ?>
				
				</div>
				
				<!-- #mfn-migrate -->
				<div id="mfn-migrate">

					<div class="btn-wrapper">
						<a href="javascript:void(0);" class="mfn-btn-migrate btn-exp"><?php 
        _e('Export', 'mfn-opts');
        ?>
</a>
						<a href="javascript:void(0);" class="mfn-btn-migrate btn-imp"><?php 
        _e('Import', 'mfn-opts');
        ?>
</a>
						<a href="javascript:void(0);" class="mfn-btn-migrate btn-tem btn-primary"><?php 
        _e('Templates', 'mfn-opts');
        ?>
</a>
					</div>
					<div class="migrate-wrapper export-wrapper hide">
						<textarea id="mfn-items-export" placeholder="Please remember to Publish/Update your post before Export."><?php 
        echo $mfn_items_serial;
        ?>
</textarea>
						<span class="description"><?php 
        _e('Copy to clipboard: Ctrl+C (Cmd+C for Mac)', 'mfn-opts');
        ?>
</span>
					</div>
					
					<div class="migrate-wrapper import-wrapper hide">
						<textarea id="mfn-items-import" placeholder="Paste import data here."></textarea>
						<a href="javascript:void(0);" class="mfn-btn-migrate btn-primary btn-import"><?php 
        _e('Import', 'mfn-opts');
        ?>
</a>	
						<select name="mfn-items-import-type">
							<option value="replace"><?php 
        _e('REPLACE current builder content', 'mfn-opts');
        ?>
</options>
							<option value="before"><?php 
        _e('Insert BEFORE current builder content', 'mfn-opts');
        ?>
</options>
							<option value="after"><?php 
        _e('Insert AFTER current builder content', 'mfn-opts');
        ?>
</options>
						</select>			
					</div>
					
					<div class="migrate-wrapper templates-wrapper hide">
						<a href="javascript:void(0);" class="mfn-btn-migrate btn-primary btn-template"><?php 
        _e('Use Template', 'mfn-opts');
        ?>
</a>	
						<select name="mfn-items-import-template-type">
							<option value="replace"><?php 
        _e('REPLACE current builder content', 'mfn-opts');
        ?>
</options>
							<option value="before"><?php 
        _e('Insert BEFORE current builder content', 'mfn-opts');
        ?>
</options>
							<option value="after"><?php 
        _e('Insert AFTER current builder content', 'mfn-opts');
        ?>
</options>
						</select>
						<select id="mfn-items-import-template">
							<option value=""><?php 
        _e('-- Select --', 'mfn-opts');
        ?>
</options>
							<?php 
        $args = array('post_type' => 'template', 'posts_per_page' => -1);
        $templates = get_posts($args);
        if (is_array($templates)) {
            foreach ($templates as $v) {
                echo '<option value="' . $v->ID . '">' . $v->post_title . '</options>';
            }
        }
        ?>
						</select>					
					</div>
					
				</div>
		
			</div>
			
			<!-- #mfn-popup -->
			<div id="mfn-popup">
				<a href="javascript:void(0);" class="mfn-btn-close mfn-popup-close"><?php 
        _e('Close', 'mfn-opts');
        ?>
</a>	
				<a href="javascript:void(0);" class="mfn-popup-save"><?php 
        _e('Save changes', 'mfn-opts');
        ?>
</a>	
			</div>
			
			<!-- #mfn-items-seo -->
			<div id="mfn-items-seo">
				<?php 
        $mfn_items_seo = get_post_meta($post->ID, 'mfn-page-items-seo', true);
        echo '<textarea id="mfn-items-seo-data">' . $mfn_items_seo . '</textarea>';
        ?>
			</div>
			
		</div>
		<?php 
    }
function mfn_builder_show()
{
    global $post;
    // Entrance Animations -----------------------------------------------------------------------------
    $mfn_animate = array('' => '- Not Animated -', 'fadeIn' => 'Fade In', 'fadeInUp' => 'Fade In Up', 'fadeInDown' => 'Fade In Down ', 'fadeInLeft' => 'Fade In Left', 'fadeInRight' => 'Fade In Right ', 'fadeInUpLarge' => 'Fade In Up Large', 'fadeInDownLarge' => 'Fade In Down Large', 'fadeInLeftLarge' => 'Fade In Left Large', 'fadeInRightLarge' => 'Fade In Right Large', 'zoomIn' => 'Zoom In', 'zoomInUp' => 'Zoom In Up', 'zoomInDown' => 'Zoom In Down', 'zoomInLeft' => 'Zoom In Left', 'zoomInRight' => 'Zoom In Right', 'zoomInUpLarge' => 'Zoom In Up Large', 'zoomInDownLarge' => 'Zoom In Down Large', 'zoomInLeftLarge' => 'Zoom In Left Large', 'bounceIn' => 'Bounce In', 'bounceInUp' => 'Bounce In Up', 'bounceInDown' => 'Bounce In Down', 'bounceInLeft' => 'Bounce In Left', 'bounceInRight' => 'Bounce In Right');
    // Default Fields for Section -----------------------------------------------------------------------------
    $mfn_std_section = array(array('id' => 'title', 'type' => 'text', 'title' => __('Title', 'mfn-opts'), 'desc' => __('This field is used as an Section Label in admin panel only and shows after page update.', 'mfn-opts')), array('id' => 'bg_image', 'type' => 'upload', 'title' => __('Background Image', 'mfn-opts')), array('id' => 'bg_position', 'type' => 'select', 'title' => __('Background Image position', 'mfn-opts'), 'desc' => __('This option can be used only with your custom image selected above.', 'mfn-opts'), 'options' => mfna_bg_position(), 'std' => 'center top no-repeat'), array('id' => 'bg_color', 'type' => 'text', 'title' => __('Background Color', 'mfn-opts'), 'desc' => __('Use color name (eg. "gray") or hex (eg. "#808080").<br /><br />Leave this field blank if you want to use transparent background.', 'mfn-opts'), 'class' => 'small-text', 'std' => ''), array('id' => 'divider', 'type' => 'select', 'title' => __('Separator', 'mfn-opts'), 'sub_desc' => __('Section Separator', 'mfn-opts'), 'desc' => __('Works only with Background Color selected above.', 'mfn-opts'), 'options' => array('' => 'None', 'circle up' => 'Circle Up', 'circle down' => 'Circle Down', 'square up' => 'Square Up', 'square down' => 'Square Down', 'triangle up' => 'Triangle Up', 'triangle down' => 'Triangle Down', 'triple-triangle up' => 'Triple Triangle Up', 'triple-triangle down' => 'Triple Triangle Down')), array('id' => 'bg_video_mp4', 'type' => 'upload', 'title' => __('HTML5 mp4 video', 'mfn-opts'), 'sub_desc' => __('m4v [.mp4]', 'mfn-opts'), 'desc' => __('Please add both mp4 and ogv for cross-browser compatibility. Background Image will be used as video placeholder before video loads and on mobile devices.', 'mfn-opts'), 'class' => __('video', 'mfn-opts')), array('id' => 'bg_video_ogv', 'type' => 'upload', 'title' => __('HTML5 ogv video', 'mfn-opts'), 'sub_desc' => __('ogg [.ogv]', 'mfn-opts'), 'class' => __('video', 'mfn-opts')), array('id' => 'layout', 'type' => 'select', 'title' => __('Layout', 'mfn-opts'), 'sub_desc' => __('Select layout for this section', 'mfn-opts'), 'desc' => __('<strong>Notice:</strong> Sidebar for section will show <strong>only</strong> if you set Full Width Page Layout in Page Options below Content Builder.', 'mfn-opts'), 'options' => array('no-sidebar' => 'Full width. No sidebar', 'left-sidebar' => 'Left Sidebar', 'right-sidebar' => 'Right Sidebar'), 'std' => 'no-sidebar'), array('id' => 'sidebar', 'type' => 'select', 'title' => __('Sidebar', 'mfn-opts'), 'sub_desc' => __('Select sidebar for this section', 'mfn-opts'), 'options' => mfn_opts_get('sidebars')), array('id' => 'padding_top', 'type' => 'text', 'title' => __('Padding Top', 'mfn-opts'), 'sub_desc' => __('Section Padding Top', 'mfn-opts'), 'desc' => __('px', 'mfn-opts'), 'class' => 'small-text', 'std' => '0'), array('id' => 'padding_bottom', 'type' => 'text', 'title' => __('Padding Bottom', 'mfn-opts'), 'sub_desc' => __('Section Padding Bottom', 'mfn-opts'), 'desc' => __('px', 'mfn-opts'), 'class' => 'small-text', 'std' => '0'), array('id' => 'style', 'type' => 'select', 'title' => __('Style', 'mfn-opts'), 'sub_desc' => __('Predefined styles for section', 'mfn-opts'), 'desc' => __('For more advanced styles please use Custom CSS field below.', 'mfn-opts'), 'options' => array('' => 'Default', 'dark' => 'Dark | .dark', 'highlight-left' => 'Highlight Left | .highlight-left', 'highlight-right' => 'Highlight Right | .highlight-right', 'full-width' => 'Full Width | .full-width', 'full-screen' => 'Full Screen | .full-screen', 'no-margin' => 'Columns without vertical margin | .no-margin')), array('id' => 'class', 'type' => 'text', 'title' => __('Custom CSS classes', 'mfn-opts'), 'desc' => __('Multiple classes should be separated with SPACE.<br />For sections with centered text you can use class: <strong>center</strong>', 'mfn-opts')), array('id' => 'section_id', 'type' => 'text', 'title' => __('Custom ID', 'mfn-opts'), 'desc' => __('Use this option to create One Page sites.<br /><br />For example: Your Custom ID is <strong>offer</strong> and you want to open this section, please use link: <strong>your-url/#offer-2</strong>', 'mfn-opts'), 'class' => 'small-text'), array('id' => 'visibility', 'type' => 'select', 'title' => __('Responsive Visibility', 'mfn-opts'), 'options' => array('' => 'Default', 'hide-desktop' => 'Hide on Desktop', 'hide-tablet' => 'Hide on Tablet', 'hide-mobile' => 'Hide on Mobile', 'hide-desktop hide-tablet' => 'Hide on Desktop & Tablet', 'hide-desktop hide-mobile' => 'Hide on Desktop & Mobile', 'hide-tablet hide-mobile' => 'Hide on Tablet & Mobile')));
    // Default Items with Fields -----------------------------------------------------------------------------
    $mfn_std_items = array('accordion' => array('type' => 'accordion', 'title' => __('Accordion', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'title', 'type' => 'text', 'title' => __('Title', 'mfn-opts')), array('id' => 'tabs', 'type' => 'tabs', 'title' => __('Accordion', 'mfn-opts'), 'sub_desc' => __('Manage accordion tabs.', 'mfn-opts'), 'desc' => __('You can use Drag & Drop to set the order.', 'mfn-opts')), array('id' => 'open1st', 'type' => 'select', 'title' => __('Open First', 'mfn-opts'), 'desc' => __('Open first tab at start.', 'mfn-opts'), 'options' => array(0 => 'No', 1 => 'Yes')), array('id' => 'style', 'type' => 'select', 'title' => __('Style', 'mfn-opts'), 'options' => array('accordion' => 'Accordion', 'toggle' => 'Toggle')))), 'article_box' => array('type' => 'article_box', 'title' => __('Article box', 'mfn-opts'), 'size' => '1/3', 'fields' => array(array('id' => 'image', 'type' => 'upload', 'title' => __('Image', 'mfn-opts'), 'sub_desc' => __('Featured Image', 'mfn-opts')), array('id' => 'slogan', 'type' => 'text', 'title' => __('Slogan', 'mfn-opts')), array('id' => 'title', 'type' => 'text', 'title' => __('Title', 'mfn-opts')), array('id' => 'link', 'type' => 'text', 'title' => __('Link', 'mfn-opts')), array('id' => 'target', 'type' => 'select', 'options' => array(0 => 'No', 1 => 'Yes'), 'title' => __('Open in new window', 'mfn-opts'), 'desc' => __('Adds a target="_blank" attribute to the link.', 'mfn-opts')), array('id' => 'animate', 'type' => 'select', 'title' => __('Animation', 'mfn-opts'), 'sub_desc' => __('Entrance animation', 'mfn-opts'), 'options' => $mfn_animate))), 'blockquote' => array('type' => 'blockquote', 'title' => __('Blockquote', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'content', 'type' => 'textarea', 'title' => __('Content', 'mfn-opts'), 'sub_desc' => __('Blockquote content.', 'mfn-opts'), 'desc' => __('HTML tags allowed.', 'mfn-opts')), array('id' => 'author', 'type' => 'text', 'title' => __('Author', 'mfn-opts')), array('id' => 'link', 'type' => 'text', 'title' => __('Link', 'mfn-opts'), 'sub_desc' => __('Link to company page.', 'mfn-opts')), array('id' => 'target', 'type' => 'select', 'options' => array(0 => 'No', 1 => 'Yes'), 'title' => __('Open in new window', 'mfn-opts'), 'sub_desc' => __('Open link in a new window.', 'mfn-opts'), 'desc' => __('Adds a target="_blank" attribute to the link.', 'mfn-opts')), array('id' => 'style', 'type' => 'select', 'title' => 'Style', 'options' => array('classic' => 'Classic', 'modern' => 'Modern'), 'desc' => __('Classic - transparent background<br />Modern - with background color set in Theme Options', 'mfn-opts')))), 'blog' => array('type' => 'blog', 'title' => __('Blog', 'mfn-opts'), 'size' => '1/1', 'fields' => array(array('id' => 'count', 'type' => 'text', 'title' => __('Count', 'mfn-opts'), 'sub_desc' => __('Number of posts to show', 'mfn-opts'), 'std' => '2', 'class' => 'small-text'), array('id' => 'category', 'type' => 'select', 'title' => __('Category', 'mfn-opts'), 'options' => mfn_get_categories('category'), 'sub_desc' => __('Select posts category', 'mfn-opts')), array('id' => 'category_multi', 'type' => 'text', 'title' => __('Multiple Categories', 'mfn-opts'), 'sub_desc' => __('Categories Slugs', 'mfn-opts'), 'desc' => __('Slugs should be separated with <strong>coma</strong> (,).', 'mfn-opts')), array('id' => 'style', 'type' => 'select', 'title' => 'Style', 'options' => array('classic' => 'Classic', 'masonry' => 'Masonry', 'timeline' => 'Timeline'), 'std' => 'classic'), array('id' => 'more', 'type' => 'select', 'options' => array(0 => 'No', 1 => 'Yes'), 'title' => __('Show Read More link', 'mfn-opts'), 'std' => 1), array('id' => 'pagination', 'type' => 'select', 'options' => array(0 => 'No', 1 => 'Yes'), 'title' => __('Show Pagination', 'mfn-opts'), 'desc' => __('<strong>Notice:</strong> Pagination will <strong>not</strong> work if you put item on Homepage of WordPress Multilangual Site.', 'mfn-opts')))), 'blog_slider' => array('type' => 'blog_slider', 'title' => __('Blog Slider', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'title', 'type' => 'text', 'title' => __('Title', 'mfn-opts')), array('id' => 'count', 'type' => 'text', 'title' => __('Count', 'mfn-opts'), 'sub_desc' => __('Number of posts to show', 'mfn-opts'), 'desc' => __('We <strong>do not</strong> recommend use more than 10 items, because site will be working slowly.', 'mfn-opts'), 'std' => '5', 'class' => 'small-text'), array('id' => 'category', 'type' => 'select', 'title' => __('Category', 'mfn-opts'), 'options' => mfn_get_categories('category'), 'sub_desc' => __('Select posts category', 'mfn-opts')), array('id' => 'category_multi', 'type' => 'text', 'title' => __('Multiple Categories', 'mfn-opts'), 'sub_desc' => __('Categories Slugs', 'mfn-opts'), 'desc' => __('Slugs should be separated with <strong>coma</strong> (,).', 'mfn-opts')), array('id' => 'more', 'type' => 'select', 'options' => array(0 => 'No', 1 => 'Yes'), 'title' => __('Show Read More button', 'mfn-opts'), 'std' => 1))), 'call_to_action' => array('type' => 'call_to_action', 'title' => __('Call to Action', 'mfn-opts'), 'size' => '1/1', 'fields' => array(array('id' => 'title', 'type' => 'text', 'title' => __('Title', 'mfn-opts')), array('id' => 'icon', 'type' => 'icon', 'title' => __('Icon', 'mfn-opts'), 'class' => 'small-text'), array('id' => 'content', 'type' => 'textarea', 'title' => __('Content', 'mfn-opts')), array('id' => 'link', 'type' => 'text', 'title' => __('Link', 'mfn-opts')), array('id' => 'button_title', 'type' => 'text', 'title' => __('Button Title', 'mfn-opts'), 'desc' => __('Leave this field blank if you want Call to Action with Big Icon', 'mfn-opts'), 'class' => 'small-text'), array('id' => 'class', 'type' => 'text', 'title' => __('Class', 'mfn-opts'), 'desc' => __('This option is useful when you want to use PrettyPhoto (prettyphoto)', 'mfn-opts')), array('id' => 'target', 'type' => 'select', 'title' => __('Open in new window', 'mfn-opts'), 'desc' => __('Adds a target="_blank" attribute to the link', 'mfn-opts'), 'options' => array(0 => 'No', 1 => 'Yes')), array('id' => 'animate', 'type' => 'select', 'title' => __('Animation', 'mfn-opts'), 'sub_desc' => __('Entrance animation', 'mfn-opts'), 'options' => $mfn_animate))), 'chart' => array('type' => 'chart', 'title' => __('Chart', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'percent', 'type' => 'text', 'title' => __('Percent', 'mfn-opts'), 'desc' => __('Number between 0-100', 'mfn-opts')), array('id' => 'label', 'type' => 'text', 'title' => __('Chart Label', 'mfn-opts')), array('id' => 'icon', 'type' => 'icon', 'title' => __('Chart Icon', 'mfn-opts'), 'class' => 'small-text'), array('id' => 'image', 'type' => 'upload', 'title' => __('Chart Image', 'mfn-opts')), array('id' => 'title', 'type' => 'text', 'title' => __('Title', 'mfn-opts')))), 'clients' => array('type' => 'clients', 'title' => __('Clients', 'mfn-opts'), 'size' => '1/1', 'fields' => array(array('id' => 'in_row', 'type' => 'text', 'title' => __('Items in Row', 'mfn-opts'), 'sub_desc' => __('Number of items in row', 'mfn-opts'), 'desc' => __('Recommended number: 3-6', 'mfn-opts'), 'std' => 6, 'class' => 'small-text'), array('id' => 'category', 'type' => 'select', 'title' => __('Category', 'mfn-opts'), 'options' => mfn_get_categories('client-types'), 'sub_desc' => __('Select the client post category.', 'mfn-opts')), array('id' => 'style', 'type' => 'select', 'options' => array('' => 'Default', 'tiles' => 'Tiles'), 'title' => __('Style', 'mfn-opts')))), 'clients_slider' => array('type' => 'clients_slider', 'title' => __('Clients Slider', 'mfn-opts'), 'size' => '1/1', 'fields' => array(array('id' => 'title', 'type' => 'text', 'title' => __('Title', 'mfn-opts')), array('id' => 'category', 'type' => 'select', 'title' => __('Category', 'mfn-opts'), 'options' => mfn_get_categories('client-types'), 'sub_desc' => __('Select the client post category.', 'mfn-opts')))), 'code' => array('type' => 'code', 'title' => __('Code', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'content', 'type' => 'textarea', 'title' => __('Content', 'mfn-opts'), 'class' => 'full-width', 'validate' => 'html'))), 'column' => array('type' => 'column', 'title' => __('Column', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'title', 'type' => 'text', 'title' => __('Title', 'mfn-opts'), 'desc' => __('This field is used as an Item Label in admin panel only and shows after page update.', 'mfn-opts')), array('id' => 'content', 'type' => 'textarea', 'title' => __('Column content', 'mfn-opts'), 'desc' => __('Shortcodes and HTML tags allowed.', 'mfn-opts'), 'class' => 'full-width', 'validate' => 'html'), array('id' => 'animate', 'type' => 'select', 'title' => __('Animation', 'mfn-opts'), 'sub_desc' => __('Entrance animation', 'mfn-opts'), 'options' => $mfn_animate))), 'contact_box' => array('type' => 'contact_box', 'title' => __('Contact Box', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'title', 'type' => 'text', 'title' => __('Title', 'mfn-opts')), array('id' => 'address', 'type' => 'textarea', 'title' => __('Address', 'mfn-opts'), 'desc' => __('HTML tags allowed.', 'mfn-opts')), array('id' => 'telephone', 'type' => 'text', 'title' => __('Telephone', 'mfn-opts')), array('id' => 'email', 'type' => 'text', 'title' => __('Email', 'mfn-opts')), array('id' => 'www', 'type' => 'text', 'title' => __('WWW', 'mfn-opts')), array('id' => 'image', 'type' => 'upload', 'title' => __('Background Image', 'mfn-opts')), array('id' => 'animate', 'type' => 'select', 'title' => __('Animation', 'mfn-opts'), 'sub_desc' => __('Entrance animation', 'mfn-opts'), 'options' => $mfn_animate))), 'content' => array('type' => 'content', 'title' => __('Content WP', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'info', 'type' => 'info', 'desc' => __('Adding this Item will show Content from WordPress Editor above Page Options. You can use it only once per page. Please also remember to turn on "Hide The Content" option.', 'nhp-opts')))), 'countdown' => array('type' => 'countdown', 'title' => __('Countdown', 'mfn-opts'), 'size' => '1/1', 'fields' => array(array('id' => 'date', 'type' => 'text', 'title' => __('Lunch Date', 'mfn-opts'), 'desc' => __('Format: 12/30/2014 12:00:00 month/day/year hour:minute:second', 'mfn-opts'), 'std' => '12/30/2014 12:00:00', 'class' => 'small-text'), array('id' => 'timezone', 'type' => 'select', 'title' => __('UTC Timezone', 'mfn-opts'), 'options' => mfna_utc(), 'std' => '0'))), 'counter' => array('type' => 'counter', 'title' => __('Counter', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'icon', 'type' => 'icon', 'title' => __('Icon', 'mfn-opts'), 'std' => ' icon-lamp', 'class' => 'small-text'), array('id' => 'color', 'type' => 'text', 'title' => __('Icon Color', 'mfn-opts'), 'desc' => __('Use color name (eg. "blue") or hex (eg. "#2991D6").', 'mfn-opts'), 'class' => 'small-text'), array('id' => 'image', 'type' => 'upload', 'title' => __('Image', 'mfn-opts'), 'desc' => __('If you upload an image, icon will not show.', 'mfn-opts')), array('id' => 'number', 'type' => 'text', 'title' => __('Number', 'mfn-opts')), array('id' => 'title', 'type' => 'text', 'title' => __('Title', 'mfn-opts')), array('id' => 'type', 'type' => 'select', 'options' => array('horizontal' => 'Horizontal', 'vertical' => 'Vertical'), 'title' => __('Style', 'mfn-opts'), 'std' => 'vertical'), array('id' => 'animate', 'type' => 'select', 'title' => __('Animation', 'mfn-opts'), 'sub_desc' => __('Entrance animation', 'mfn-opts'), 'options' => $mfn_animate))), 'divider' => array('type' => 'divider', 'title' => __('Divider', 'mfn-opts'), 'size' => '1/1', 'fields' => array(array('id' => 'height', 'type' => 'text', 'title' => __('Divider height', 'mfn-opts'), 'desc' => __('px', 'mfn-opts'), 'class' => 'small-text'), array('id' => 'style', 'type' => 'select', 'options' => array('default' => 'Default', 'dots' => 'Dots', 'zigzag' => 'ZigZag'), 'title' => __('Style', 'mfn-opts')), array('id' => 'line', 'type' => 'select', 'options' => array('default' => 'Default', 'narrow' => 'Narrow', 'wide' => 'Wide', '' => 'No Line'), 'title' => __('Line', 'mfn-opts'), 'desc' => __('This option can be used <strong>only</strong> with Style: Default.', 'mfn-opts')), array('id' => 'themecolor', 'type' => 'select', 'options' => array(0 => 'No', 1 => 'Yes'), 'title' => __('Theme Color', 'mfn-opts'), 'desc' => __('This option can be used <strong>only</strong> with Style: Default.', 'mfn-opts')))), 'fancy_divider' => array('type' => 'fancy_divider', 'title' => __('Fancy Divider', 'mfn-opts'), 'size' => '1/1', 'fields' => array(array('id' => 'info', 'type' => 'info', 'desc' => __('This item can only be used on pages <strong>Without Sidebar</strong>. Please also set Section Style to <strong>Full Width</strong>.', 'nhp-opts')), array('id' => 'style', 'type' => 'select', 'options' => array('circle up' => 'Circle Up', 'circle down' => 'Circle Down', 'curve up' => 'Curve Up', 'curve down' => 'Curve Down', 'stamp' => 'Stamp', 'triangle up' => 'Triangle Up', 'triangle down' => 'Triangle Down'), 'title' => __('Style', 'mfn-opts')), array('id' => 'color_top', 'type' => 'text', 'title' => __('Color Top', 'mfn-opts'), 'desc' => __('Use color name (eg. "blue") or hex (eg. "#2991D6").', 'mfn-opts'), 'class' => 'small-text', 'std' => ''), array('id' => 'color_bottom', 'type' => 'text', 'title' => __('Color Bottom', 'mfn-opts'), 'desc' => __('Use color name (eg. "blue") or hex (eg. "#2991D6").', 'mfn-opts'), 'class' => 'small-text', 'std' => ''))), 'fancy_heading' => array('type' => 'fancy_heading', 'title' => __('Fancy Heading', 'mfn-opts'), 'size' => '1/1', 'fields' => array(array('id' => 'title', 'type' => 'text', 'title' => __('Title', 'mfn-opts')), array('id' => 'h1', 'type' => 'select', 'options' => array(0 => 'No', 1 => 'Yes'), 'title' => __('Use H1 tag', 'mfn-opts'), 'desc' => __('Wrap title into H1 instead of H2', 'mfn-opts')), array('id' => 'icon', 'type' => 'icon', 'title' => __('Icon', 'mfn-opts'), 'sub_desc' => __('Icon Style only', 'mfn-opts'), 'class' => 'small-text'), array('id' => 'slogan', 'type' => 'text', 'title' => __('Slogan', 'mfn-opts'), 'sub_desc' => __('Line Style only', 'mfn-opts')), array('id' => 'content', 'type' => 'textarea', 'title' => __('Content', 'mfn-opts'), 'validate' => 'html'), array('id' => 'style', 'type' => 'select', 'options' => array('icon' => 'Icon', 'line' => 'Line', 'arrows' => 'Arrows'), 'title' => __('Style', 'mfn-opts'), 'desc' => __('Some fields above work on selected styles.', 'mfn-opts')), array('id' => 'animate', 'type' => 'select', 'title' => __('Animation', 'mfn-opts'), 'sub_desc' => __('Entrance animation', 'mfn-opts'), 'options' => $mfn_animate))), 'faq' => array('type' => 'faq', 'title' => __('FAQ', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'title', 'type' => 'text', 'title' => __('Title', 'mfn-opts')), array('id' => 'tabs', 'type' => 'tabs', 'title' => __('FAQ', 'mfn-opts'), 'sub_desc' => __('Manage FAQ tabs.', 'mfn-opts'), 'desc' => __('You can use Drag & Drop to set the order.', 'mfn-opts')), array('id' => 'open1st', 'type' => 'select', 'options' => array(0 => 'No', 1 => 'Yes'), 'title' => __('Open First', 'mfn-opts'), 'desc' => __('Open first tab at start.', 'mfn-opts')))), 'feature_list' => array('type' => 'feature_list', 'title' => __('Feature List', 'mfn-opts'), 'size' => '1/1', 'fields' => array(array('id' => 'title', 'type' => 'text', 'title' => __('Title', 'mfn-opts'), 'desc' => __('This field is used as an Item Label in admin panel only and shows after page update.', 'mfn-opts')), array('id' => 'content', 'type' => 'textarea', 'title' => __('Content', 'mfn-opts'), 'desc' => __('Please use <strong>[item icon="" title="" link="" target=""]</strong> shortcodes.', 'mfn-opts'), 'std' => '[item icon="icon-lamp" title="" link="" target="" animate=""]'))), 'flat_box' => array('type' => 'flat_box', 'title' => __('Flat Box', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'icon', 'type' => 'icon', 'title' => __('Icon', 'mfn-opts'), 'std' => 'icon-lamp', 'class' => 'small-text'), array('id' => 'background', 'type' => 'text', 'title' => __('Icon background', 'mfn-opts'), 'desc' => __('Use color name (eg. "blue") or hex (eg. "#2991D6").<br /><br />Leave this field blank to use Theme Background.', 'mfn-opts'), 'class' => 'small-text'), array('id' => 'image', 'type' => 'upload', 'title' => __('Image', 'mfn-opts')), array('id' => 'title', 'type' => 'text', 'title' => __('Title', 'mfn-opts')), array('id' => 'content', 'type' => 'textarea', 'title' => __('Content', 'mfn-opts'), 'validate' => 'html'), array('id' => 'link', 'type' => 'text', 'title' => __('Link', 'mfn-opts')), array('id' => 'target', 'type' => 'select', 'options' => array(0 => 'No', 1 => 'Yes'), 'title' => __('Open in new window', 'mfn-opts'), 'desc' => __('Adds a target="_blank" attribute to the link.', 'mfn-opts')), array('id' => 'animate', 'type' => 'select', 'title' => __('Animation', 'mfn-opts'), 'sub_desc' => __('Entrance animation', 'mfn-opts'), 'options' => $mfn_animate))), 'hover_box' => array('type' => 'hover_box', 'title' => __('Hover Box', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'image', 'type' => 'upload', 'title' => __('Image', 'mfn-opts')), array('id' => 'image_hover', 'type' => 'upload', 'title' => __('Hover Image', 'mfn-opts'), 'desc' => __('Both images must have the same size.', 'mfn-opts')), array('id' => 'link', 'type' => 'text', 'title' => __('Link', 'mfn-opts')), array('id' => 'target', 'type' => 'select', 'options' => array(0 => 'No', 1 => 'Yes'), 'title' => __('Open in new window', 'mfn-opts'), 'desc' => __('Adds a target="_blank" attribute to the link.', 'mfn-opts')))), 'how_it_works' => array('type' => 'how_it_works', 'title' => __('How It Works', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'image', 'type' => 'upload', 'title' => __('Background Image', 'mfn-opts'), 'desc' => __('Recommended: Square Image with transparent background.', 'mfn-opts')), array('id' => 'number', 'type' => 'text', 'title' => __('Number', 'mfn-opts'), 'class' => 'small-text'), array('id' => 'title', 'type' => 'text', 'title' => __('Title', 'mfn-opts')), array('id' => 'content', 'type' => 'textarea', 'title' => __('Content', 'mfn-opts'), 'validate' => 'html'), array('id' => 'border', 'type' => 'select', 'title' => __('Line', 'mfn-opts'), 'sub_desc' => __('Show right connecting line', 'mfn-opts'), 'options' => array(0 => 'No', 1 => 'Yes')), array('id' => 'link', 'type' => 'text', 'title' => __('Link', 'mfn-opts')), array('id' => 'target', 'type' => 'select', 'options' => array(0 => 'No', 1 => 'Yes'), 'title' => __('Open in new window', 'mfn-opts'), 'desc' => __('Adds a target="_blank" attribute to the link.', 'mfn-opts')), array('id' => 'animate', 'type' => 'select', 'title' => __('Animation', 'mfn-opts'), 'sub_desc' => __('Entrance animation', 'mfn-opts'), 'options' => $mfn_animate))), 'icon_box' => array('type' => 'icon_box', 'title' => __('Icon Box', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'title', 'type' => 'text', 'title' => __('Title', 'mfn-opts')), array('id' => 'content', 'type' => 'textarea', 'title' => __('Content', 'mfn-opts')), array('id' => 'icon', 'type' => 'icon', 'title' => __('Icon', 'mfn-opts'), 'std' => 'icon-lamp', 'class' => 'small-text'), array('id' => 'image', 'type' => 'upload', 'title' => __('Image', 'mfn-opts')), array('id' => 'icon_position', 'type' => 'select', 'options' => array('left' => 'Left', 'top' => 'Top'), 'title' => __('Icon Position', 'mfn-opts'), 'std' => 'top'), array('id' => 'border', 'type' => 'select', 'title' => __('Border', 'mfn-opts'), 'sub_desc' => __('Show right border', 'mfn-opts'), 'options' => array(0 => 'No', 1 => 'Yes')), array('id' => 'link', 'type' => 'text', 'title' => __('Link', 'mfn-opts')), array('id' => 'target', 'type' => 'select', 'options' => array(0 => 'No', 1 => 'Yes'), 'title' => __('Open in new window', 'mfn-opts'), 'desc' => __('Adds a target="_blank" attribute to the link.', 'mfn-opts')), array('id' => 'animate', 'type' => 'select', 'title' => __('Animation', 'mfn-opts'), 'sub_desc' => __('Entrance animation', 'mfn-opts'), 'options' => $mfn_animate), array('id' => 'class', 'type' => 'text', 'title' => __('Custom CSS classes for link', 'mfn-opts'), 'desc' => __('This option is useful when you want to use PrettyPhoto (prettyphoto) or Scroll (scroll).', 'mfn-opts')))), 'image' => array('type' => 'image', 'title' => __('Image', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'src', 'type' => 'upload', 'title' => __('Image', 'mfn-opts')), array('id' => 'border', 'type' => 'select', 'options' => array(0 => 'No', 1 => 'Yes'), 'title' => __('Border', 'mfn-opts'), 'sub_desc' => __('Show Image Border', 'mfn-opts')), array('id' => 'align', 'type' => 'select', 'title' => __('Align', 'mfn-opts'), 'desc' => __('If you want image to be resized to column width please use <b>align none</b>', 'mfn-opts'), 'options' => array('' => 'None', 'left' => 'Left', 'right' => 'Right', 'center' => 'Center')), array('id' => 'margin', 'type' => 'text', 'title' => __('Margin Top', 'mfn-opts'), 'desc' => __('px', 'mfn-opts'), 'class' => 'small-text'), array('id' => 'alt', 'type' => 'text', 'title' => __('Alternate Text', 'mfn-opts')), array('id' => 'caption', 'type' => 'text', 'title' => __('Caption', 'mfn-opts')), array('id' => 'link_image', 'type' => 'upload', 'title' => __('Zoomed image', 'mfn-opts'), 'desc' => __('This image will be opened in lightbox.', 'mfn-opts')), array('id' => 'link', 'type' => 'text', 'title' => __('Link', 'mfn-opts'), 'desc' => __('This link will work only if you leave the above "Zoomed image" field empty.', 'mfn-opts')), array('id' => 'target', 'type' => 'select', 'options' => array(0 => 'No', 1 => 'Yes'), 'title' => __('Open in new window', 'mfn-opts'), 'desc' => __('Adds a target="_blank" attribute to the link.', 'mfn-opts')), array('id' => 'animate', 'type' => 'select', 'title' => __('Animation', 'mfn-opts'), 'sub_desc' => __('Entrance animation', 'mfn-opts'), 'options' => $mfn_animate))), 'info_box' => array('type' => 'info_box', 'title' => __('Info Box', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'title', 'type' => 'text', 'title' => __('Title', 'mfn-opts')), array('id' => 'content', 'type' => 'textarea', 'title' => __('Content', 'mfn-opts'), 'desc' => __('HTML tags allowed.', 'mfn-opts'), 'std' => '<ul><li>list item 1</li><li>list item 2</li></ul>'), array('id' => 'image', 'type' => 'upload', 'title' => __('Background Image', 'mfn-opts')), array('id' => 'animate', 'type' => 'select', 'title' => __('Animation', 'mfn-opts'), 'sub_desc' => __('Entrance animation', 'mfn-opts'), 'options' => $mfn_animate))), 'list' => array('type' => 'list', 'title' => __('List', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'icon', 'type' => 'icon', 'title' => __('Icon', 'mfn-opts'), 'std' => ' icon-lamp', 'class' => 'small-text'), array('id' => 'image', 'type' => 'upload', 'title' => __('Image', 'mfn-opts')), array('id' => 'title', 'type' => 'text', 'title' => __('Title', 'mfn-opts')), array('id' => 'content', 'type' => 'textarea', 'title' => __('Content', 'mfn-opts')), array('id' => 'link', 'type' => 'text', 'title' => __('Link', 'mfn-opts'), 'desc' => __('This link will work only if you leave the above "Zoomed image" field empty.', 'mfn-opts')), array('id' => 'target', 'type' => 'select', 'title' => __('Open in new window', 'mfn-opts'), 'desc' => __('Adds a target="_blank" attribute to the link.', 'mfn-opts'), 'options' => array(0 => 'No', 1 => 'Yes')), array('id' => 'style', 'type' => 'select', 'title' => __('Style', 'mfn-opts'), 'options' => array(1 => 'With background', 2 => 'Transparent', 3 => 'Vertical', 4 => 'Ordered list')), array('id' => 'animate', 'type' => 'select', 'title' => __('Animation', 'mfn-opts'), 'sub_desc' => __('Entrance animation', 'mfn-opts'), 'options' => $mfn_animate))), 'map' => array('type' => 'map', 'title' => __('Map', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'lat', 'type' => 'text', 'title' => __('Google Maps Lat', 'mfn-opts'), 'class' => 'small-text', 'desc' => __('The map will appear only if this field is filled correctly.', 'mfn-opts')), array('id' => 'lng', 'type' => 'text', 'title' => __('Google Maps Lng', 'mfn-opts'), 'class' => 'small-text', 'desc' => __('The map will appear only if this field is filled correctly.', 'mfn-opts')), array('id' => 'zoom', 'type' => 'text', 'title' => __('Zoom', 'mfn-opts'), 'class' => 'small-text', 'std' => 13), array('id' => 'height', 'type' => 'text', 'title' => __('Height', 'mfn-opts'), 'class' => 'small-text', 'std' => 200), array('id' => 'title', 'type' => 'text', 'title' => __('Box | Title', 'mfn-opts'), 'class' => 'small-text'), array('id' => 'content', 'type' => 'textarea', 'title' => __('Box | Address', 'mfn-opts'), 'desc' => __('HTML tags allowed.', 'mfn-opts')), array('id' => 'telephone', 'type' => 'text', 'title' => __('Box | Telephone', 'mfn-opts')), array('id' => 'email', 'type' => 'text', 'title' => __('Box | Email', 'mfn-opts')), array('id' => 'www', 'type' => 'text', 'title' => __('Box | WWW', 'mfn-opts')))), 'offer' => array('type' => 'offer', 'title' => __('Offer Slider Full', 'mfn-opts'), 'size' => '1/1', 'fields' => array(array('id' => 'info', 'type' => 'info', 'desc' => __('This item can only be used on pages <strong>Without Sidebar</strong>.<br />Please also set Section Style to <strong>Full Width</strong> and use one Item in one Section.', 'nhp-opts')), array('id' => 'category', 'type' => 'select', 'title' => __('Category', 'mfn-opts'), 'options' => mfn_get_categories('offer-types'), 'sub_desc' => __('Select the offer post category.', 'mfn-opts')))), 'offer_thumb' => array('type' => 'offer_thumb', 'title' => __('Offer Slider Thumb', 'mfn-opts'), 'size' => '1/1', 'fields' => array(array('id' => 'info', 'type' => 'info', 'desc' => __('This item can only be used <strong>once per page</strong>.', 'nhp-opts')), array('id' => 'category', 'type' => 'select', 'title' => __('Category', 'mfn-opts'), 'options' => mfn_get_categories('offer-types'), 'sub_desc' => __('Select the offer post category.', 'mfn-opts')))), 'opening_hours' => array('type' => 'opening_hours', 'title' => __('Opening Hours', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'title', 'type' => 'text', 'title' => __('Title', 'mfn-opts')), array('id' => 'content', 'type' => 'textarea', 'title' => __('Content', 'mfn-opts'), 'desc' => __('HTML tags allowed.', 'mfn-opts'), 'std' => '<ul><li><label>Monday - Saturday</label><span>8am - 4pm</span></li></ul>'), array('id' => 'image', 'type' => 'upload', 'title' => __('Background Image', 'mfn-opts')), array('id' => 'animate', 'type' => 'select', 'title' => __('Animation', 'mfn-opts'), 'sub_desc' => __('Entrance animation', 'mfn-opts'), 'options' => $mfn_animate))), 'our_team' => array('type' => 'our_team', 'title' => __('Our Team', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'heading', 'type' => 'text', 'title' => __('Heading', 'mfn-opts')), array('id' => 'image', 'type' => 'upload', 'title' => __('Photo', 'mfn-opts')), array('id' => 'title', 'type' => 'text', 'title' => __('Title', 'mfn-opts'), 'sub_desc' => __('Will also be used as the image alternative text', 'mfn-opts')), array('id' => 'subtitle', 'type' => 'text', 'title' => __('Subtitle', 'mfn-opts')), array('id' => 'phone', 'type' => 'text', 'title' => __('Phone', 'mfn-opts')), array('id' => 'content', 'type' => 'textarea', 'title' => __('Content', 'mfn-opts')), array('id' => 'email', 'type' => 'text', 'title' => __('E-mail', 'mfn-opts')), array('id' => 'facebook', 'type' => 'text', 'title' => __('Facebook', 'mfn-opts')), array('id' => 'twitter', 'type' => 'text', 'title' => __('Twitter', 'mfn-opts')), array('id' => 'linkedin', 'type' => 'text', 'title' => __('LinkedIn', 'mfn-opts')), array('id' => 'blockquote', 'type' => 'textarea', 'title' => __('Blockquote', 'mfn-opts')), array('id' => 'style', 'type' => 'select', 'options' => array('circle' => 'Circle', 'vertical' => 'Vertical', 'horizontal' => 'Horizontal 	[only: 1/2]'), 'title' => __('Style', 'mfn-opts'), 'std' => 'vertical'), array('id' => 'link', 'type' => 'text', 'title' => __('Link', 'mfn-opts')), array('id' => 'target', 'type' => 'select', 'title' => __('Open in new window', 'mfn-opts'), 'desc' => __('Adds a target="_blank" attribute to the link.', 'mfn-opts'), 'options' => array(0 => 'No', 1 => 'Yes')), array('id' => 'animate', 'type' => 'select', 'title' => __('Animation', 'mfn-opts'), 'sub_desc' => __('Entrance animation', 'mfn-opts'), 'options' => $mfn_animate))), 'our_team_list' => array('type' => 'our_team_list', 'title' => __('Our Team List', 'mfn-opts'), 'size' => '1/1', 'fields' => array(array('id' => 'image', 'type' => 'upload', 'title' => __('Photo', 'mfn-opts')), array('id' => 'title', 'type' => 'text', 'title' => __('Title', 'mfn-opts'), 'sub_desc' => __('Will also be used as the image alternative text', 'mfn-opts')), array('id' => 'subtitle', 'type' => 'text', 'title' => __('Subtitle', 'mfn-opts')), array('id' => 'phone', 'type' => 'text', 'title' => __('Phone', 'mfn-opts')), array('id' => 'content', 'type' => 'textarea', 'title' => __('Content', 'mfn-opts')), array('id' => 'blockquote', 'type' => 'textarea', 'title' => __('Blockquote', 'mfn-opts')), array('id' => 'email', 'type' => 'text', 'title' => __('E-mail', 'mfn-opts')), array('id' => 'facebook', 'type' => 'text', 'title' => __('Facebook', 'mfn-opts')), array('id' => 'twitter', 'type' => 'text', 'title' => __('Twitter', 'mfn-opts')), array('id' => 'linkedin', 'type' => 'text', 'title' => __('LinkedIn', 'mfn-opts')), array('id' => 'link', 'type' => 'text', 'title' => __('Link', 'mfn-opts')), array('id' => 'target', 'type' => 'select', 'title' => __('Open in new window', 'mfn-opts'), 'desc' => __('Adds a target="_blank" attribute to the link.', 'mfn-opts'), 'options' => array(0 => 'No', 1 => 'Yes')))), 'photo_box' => array('type' => 'photo_box', 'title' => __('Photo Box', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'title', 'type' => 'text', 'title' => __('Title', 'mfn-opts')), array('id' => 'image', 'type' => 'upload', 'title' => __('Image', 'mfn-opts')), array('id' => 'content', 'type' => 'textarea', 'title' => __('Content', 'mfn-opts')), array('id' => 'align', 'type' => 'select', 'title' => 'Text Align', 'options' => array('' => 'Center', 'left' => 'Left', 'right' => 'Right')), array('id' => 'link', 'type' => 'text', 'title' => __('Link', 'mfn-opts')), array('id' => 'target', 'type' => 'select', 'title' => __('Open in new window', 'mfn-opts'), 'desc' => __('Adds a target="_blank" attribute to the link.', 'mfn-opts'), 'options' => array(0 => 'No', 1 => 'Yes')), array('id' => 'animate', 'type' => 'select', 'title' => __('Animation', 'mfn-opts'), 'sub_desc' => __('Entrance animation', 'mfn-opts'), 'options' => $mfn_animate))), 'portfolio' => array('type' => 'portfolio', 'title' => __('Portfolio', 'mfn-opts'), 'size' => '1/1', 'fields' => array(array('id' => 'count', 'type' => 'text', 'title' => __('Count', 'mfn-opts'), 'std' => '2', 'class' => 'small-text'), array('id' => 'category', 'type' => 'select', 'title' => __('Category', 'mfn-opts'), 'options' => mfn_get_categories('portfolio-types'), 'sub_desc' => __('Select the portfolio post category.', 'mfn-opts')), array('id' => 'category_multi', 'type' => 'text', 'title' => __('Multiple Categories', 'mfn-opts'), 'sub_desc' => __('Categories Slugs', 'mfn-opts'), 'desc' => __('Slugs should be separated with <strong>coma</strong> (,).', 'mfn-opts')), array('id' => 'style', 'type' => 'select', 'title' => 'Style', 'options' => array('list' => 'List', 'flat' => 'Flat', 'grid' => 'Grid', 'masonry' => 'Masonry', 'masonry-flat' => 'Masonry Flat'), 'std' => 'grid'), array('id' => 'orderby', 'type' => 'select', 'title' => __('Order by', 'mfn-opts'), 'sub_desc' => __('Portfolio items order by column.', 'mfn-opts'), 'options' => array('date' => 'Date', 'menu_order' => 'Menu order', 'title' => 'Title', 'rand' => 'Random'), 'std' => 'date'), array('id' => 'order', 'type' => 'select', 'title' => __('Order', 'mfn-opts'), 'sub_desc' => __('Portfolio items order.', 'mfn-opts'), 'options' => array('ASC' => 'Ascending', 'DESC' => 'Descending'), 'std' => 'DESC'), array('id' => 'pagination', 'type' => 'select', 'options' => array(0 => 'No', 1 => 'Yes'), 'title' => __('Show pagination', 'mfn-opts'), 'desc' => __('<strong>Notice:</strong> Pagination will <strong>not</strong> work if you put item on Homepage of WordPress Multilangual Site.', 'mfn-opts')))), 'portfolio_grid' => array('type' => 'portfolio_grid', 'title' => __('Portfolio Grid', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'count', 'type' => 'text', 'title' => __('Count', 'mfn-opts'), 'std' => '4', 'class' => 'small-text'), array('id' => 'category', 'type' => 'select', 'title' => __('Category', 'mfn-opts'), 'options' => mfn_get_categories('portfolio-types'), 'sub_desc' => __('Select the portfolio post category.', 'mfn-opts')), array('id' => 'category_multi', 'type' => 'text', 'title' => __('Multiple Categories', 'mfn-opts'), 'sub_desc' => __('Categories Slugs', 'mfn-opts'), 'desc' => __('Slugs should be separated with <strong>coma</strong> (,).', 'mfn-opts')), array('id' => 'orderby', 'type' => 'select', 'title' => __('Order by', 'mfn-opts'), 'sub_desc' => __('Portfolio items order by column.', 'mfn-opts'), 'options' => array('date' => 'Date', 'menu_order' => 'Menu order', 'title' => 'Title', 'rand' => 'Random'), 'std' => 'date'), array('id' => 'order', 'type' => 'select', 'title' => __('Order', 'mfn-opts'), 'sub_desc' => __('Portfolio items order.', 'mfn-opts'), 'options' => array('ASC' => 'Ascending', 'DESC' => 'Descending'), 'std' => 'DESC'))), 'portfolio_slider' => array('type' => 'portfolio_slider', 'title' => __('Portfolio Slider', 'mfn-opts'), 'size' => '1/1', 'fields' => array(array('id' => 'count', 'type' => 'text', 'title' => __('Count', 'mfn-opts'), 'desc' => __('We <strong>do not</strong> recommend use more than 10 items, because site will be working slowly.', 'mfn-opts'), 'std' => '6', 'class' => 'small-text'), array('id' => 'category', 'type' => 'select', 'title' => __('Category', 'mfn-opts'), 'options' => mfn_get_categories('portfolio-types'), 'sub_desc' => __('Select the portfolio post category.', 'mfn-opts')), array('id' => 'category_multi', 'type' => 'text', 'title' => __('Multiple Categories', 'mfn-opts'), 'sub_desc' => __('Categories Slugs', 'mfn-opts'), 'desc' => __('Slugs should be separated with <strong>coma</strong> (,).', 'mfn-opts')), array('id' => 'orderby', 'type' => 'select', 'title' => __('Order by', 'mfn-opts'), 'sub_desc' => __('Portfolio items order by column.', 'mfn-opts'), 'options' => array('date' => 'Date', 'menu_order' => 'Menu order', 'title' => 'Title'), 'std' => 'date'), array('id' => 'order', 'type' => 'select', 'title' => __('Order', 'mfn-opts'), 'sub_desc' => __('Portfolio items order.', 'mfn-opts'), 'options' => array('ASC' => 'Ascending', 'DESC' => 'Descending'), 'std' => 'DESC'))), 'pricing_item' => array('type' => 'pricing_item', 'title' => __('Pricing Item', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'image', 'type' => 'upload', 'title' => __('Image', 'mfn-opts')), array('id' => 'title', 'type' => 'text', 'title' => __('Title', 'mfn-opts'), 'sub_desc' => __('Pricing item title', 'mfn-opts')), array('id' => 'price', 'type' => 'text', 'title' => __('Price', 'mfn-opts'), 'class' => 'small-text'), array('id' => 'currency', 'type' => 'text', 'title' => __('Currency', 'mfn-opts'), 'class' => 'small-text'), array('id' => 'period', 'type' => 'text', 'title' => __('Period', 'mfn-opts'), 'class' => 'small-text'), array('id' => 'subtitle', 'type' => 'text', 'title' => __('Subtitle', 'mfn-opts')), array('id' => 'content', 'type' => 'textarea', 'title' => __('Content', 'mfn-opts'), 'desc' => __('HTML tags allowed.', 'mfn-opts'), 'std' => '<ul><li><strong>List</strong> item</li></ul>'), array('id' => 'link_title', 'type' => 'text', 'title' => __('Link title', 'mfn-opts'), 'desc' => __('Link will appear only if this field will be filled.', 'mfn-opts')), array('id' => 'link', 'type' => 'text', 'title' => __('Link', 'mfn-opts'), 'desc' => __('Link will appear only if this field will be filled.', 'mfn-opts')), array('id' => 'featured', 'type' => 'select', 'title' => __('Featured', 'mfn-opts'), 'options' => array(0 => 'No', 1 => 'Yes')), array('id' => 'style', 'type' => 'select', 'title' => __('Style', 'mfn-opts'), 'options' => array('box' => 'Box', 'label' => 'Table Label', 'table' => 'Table')), array('id' => 'animate', 'type' => 'select', 'title' => __('Animation', 'mfn-opts'), 'sub_desc' => __('Entrance animation', 'mfn-opts'), 'options' => $mfn_animate))), 'progress_bars' => array('type' => 'progress_bars', 'title' => __('Progress Bars', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'title', 'type' => 'text', 'title' => __('Title', 'mfn-opts')), array('id' => 'content', 'type' => 'textarea', 'title' => __('Content', 'mfn-opts'), 'desc' => __('Please use <strong>[bar title="Title" value="50"]</strong> shortcodes here.', 'mfn-opts'), 'std' => '[bar title="Bar1" value="50"]' . "\n" . '[bar title="Bar2" value="60"]'))), 'promo_box' => array('type' => 'promo_box', 'title' => __('Promo Box', 'mfn-opts'), 'size' => '1/2', 'fields' => array(array('id' => 'image', 'type' => 'upload', 'title' => __('Image', 'mfn-opts')), array('id' => 'title', 'type' => 'text', 'title' => __('Title', 'mfn-opts')), array('id' => 'content', 'type' => 'textarea', 'title' => __('Content', 'mfn-opts')), array('id' => 'btn_text', 'type' => 'text', 'title' => __('Button Text', 'mfn-opts'), 'class' => 'small-text'), array('id' => 'btn_link', 'type' => 'text', 'title' => __('Button Link', 'mfn-opts'), 'class' => 'small-text'), array('id' => 'target', 'type' => 'select', 'title' => __('Open in new window', 'mfn-opts'), 'desc' => __('Adds a target="_blank" attribute to the link.', 'mfn-opts'), 'options' => array(0 => 'No', 1 => 'Yes')), array('id' => 'position', 'type' => 'select', 'title' => __('Image position', 'mfn-opts'), 'options' => array('left' => 'Left', 'right' => 'Right'), 'std' => 'left'), array('id' => 'border', 'type' => 'select', 'title' => __('Border', 'mfn-opts'), 'sub_desc' => __('Show right border', 'mfn-opts'), 'options' => array(0 => 'No', 1 => 'Yes'), 'std' => 'no_border'), array('id' => 'animate', 'type' => 'select', 'title' => __('Animation', 'mfn-opts'), 'sub_desc' => __('Entrance animation', 'mfn-opts'), 'options' => $mfn_animate))), 'quick_fact' => array('type' => 'quick_fact', 'title' => __('Quick Fact', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'heading', 'type' => 'text', 'title' => __('Heading', 'mfn-opts')), array('id' => 'number', 'type' => 'text', 'title' => __('Number', 'mfn-opts'), 'class' => 'small-text'), array('id' => 'title', 'type' => 'text', 'title' => __('Title', 'mfn-opts')), array('id' => 'content', 'type' => 'textarea', 'title' => __('Content', 'mfn-opts'), 'validate' => 'html'), array('id' => 'animate', 'type' => 'select', 'title' => __('Animation', 'mfn-opts'), 'sub_desc' => __('Entrance animation', 'mfn-opts'), 'options' => $mfn_animate))), 'shop_slider' => array('type' => 'shop_slider', 'title' => __('Shop Slider', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'title', 'type' => 'text', 'title' => __('Title', 'mfn-opts')), array('id' => 'count', 'type' => 'text', 'title' => __('Count', 'mfn-opts'), 'sub_desc' => __('Number of posts to show', 'mfn-opts'), 'desc' => __('We <strong>do not</strong> recommend use more than 10 items, because site will be working slowly.', 'mfn-opts'), 'std' => '5', 'class' => 'small-text'), array('id' => 'category', 'type' => 'select', 'title' => __('Category', 'mfn-opts'), 'options' => mfn_get_categories('product_cat'), 'sub_desc' => __('Select the products category', 'mfn-opts')), array('id' => 'orderby', 'type' => 'select', 'title' => __('Order by', 'mfn-opts'), 'sub_desc' => __('Slides order by column', 'mfn-opts'), 'options' => array('date' => 'Date', 'menu_order' => 'Menu order', 'title' => 'Title'), 'std' => 'date'), array('id' => 'order', 'type' => 'select', 'title' => __('Order', 'mfn-opts'), 'sub_desc' => __('Slides order', 'mfn-opts'), 'options' => array('ASC' => 'Ascending', 'DESC' => 'Descending'), 'std' => 'DESC'))), 'sidebar_widget' => array('type' => 'sidebar_widget', 'title' => __('Sidebar Widget', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'sidebar', 'type' => 'select', 'title' => __('Select Sidebar', 'mfn-opts'), 'desc' => __('1. Create Sidebar in Theme Options > Getting Started > Sidebars.<br />2. Add Widget.<br />3. Select your sidebar.', 'mfn-opts'), 'options' => mfn_opts_get('sidebars')))), 'slider' => array('type' => 'slider', 'title' => __('Slider', 'mfn-opts'), 'size' => '1/1', 'fields' => array(array('id' => 'category', 'type' => 'select', 'title' => __('Category', 'mfn-opts'), 'options' => mfn_get_categories('slide-types'), 'sub_desc' => __('Select the slides category', 'mfn-opts')), array('id' => 'orderby', 'type' => 'select', 'title' => __('Order by', 'mfn-opts'), 'sub_desc' => __('Slides order by column', 'mfn-opts'), 'options' => array('date' => 'Date', 'menu_order' => 'Menu order', 'title' => 'Title'), 'std' => 'date'), array('id' => 'order', 'type' => 'select', 'title' => __('Order', 'mfn-opts'), 'sub_desc' => __('Slides order', 'mfn-opts'), 'options' => array('ASC' => 'Ascending', 'DESC' => 'Descending'), 'std' => 'DESC'))), 'sliding_box' => array('type' => 'sliding_box', 'title' => __('Sliding Box', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'image', 'type' => 'upload', 'title' => __('Image', 'mfn-opts')), array('id' => 'title', 'type' => 'text', 'title' => __('Title', 'mfn-opts')), array('id' => 'link', 'type' => 'text', 'title' => __('Link', 'mfn-opts')), array('id' => 'target', 'type' => 'select', 'options' => array(0 => 'No', 1 => 'Yes'), 'title' => __('Open in new window', 'mfn-opts'), 'desc' => __('Adds a target="_blank" attribute to the link.', 'mfn-opts')), array('id' => 'animate', 'type' => 'select', 'title' => __('Animation', 'mfn-opts'), 'sub_desc' => __('Entrance animation', 'mfn-opts'), 'options' => $mfn_animate))), 'tabs' => array('type' => 'tabs', 'title' => __('Tabs', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'title', 'type' => 'text', 'title' => __('Title', 'mfn-opts')), array('id' => 'tabs', 'type' => 'tabs', 'title' => __('Tabs', 'mfn-opts'), 'sub_desc' => __('To add an <strong>icon</strong> in Title field, please use the following code:<br/><br/>&lt;i class=" icon-lamp"&gt;&lt;/i&gt; Tab Title', 'mfn-opts'), 'desc' => __('You can use Drag & Drop to set the order.', 'mfn-opts')), array('id' => 'type', 'type' => 'select', 'options' => array('horizontal' => 'Horizontal', 'vertical' => 'Vertical'), 'title' => __('Style', 'mfn-opts'), 'desc' => __('Vertical tabs works only for column widths: 1/2, 3/4 & 1/1', 'mfn-opts')), array('id' => 'uid', 'type' => 'text', 'title' => __('Unique ID [optional]', 'mfn-opts'), 'sub_desc' => __('Allowed characters: "a-z" "-" "_"', 'mfn-opts'), 'desc' => __('Use this option if you want to open specified tab from link.<br />For example: Your Unique ID is <strong>offer</strong> and you want to open 2nd tab, please use link: <strong>your-url/#offer-2</strong>', 'mfn-opts')))), 'testimonials' => array('type' => 'testimonials', 'title' => __('Testimonials', 'mfn-opts'), 'size' => '1/1', 'fields' => array(array('id' => 'category', 'type' => 'select', 'title' => __('Category', 'mfn-opts'), 'options' => mfn_get_categories('testimonial-types'), 'sub_desc' => __('Select the testimonial post category.', 'mfn-opts')), array('id' => 'orderby', 'type' => 'select', 'title' => __('Order by', 'mfn-opts'), 'sub_desc' => __('Testimonials order by column.', 'mfn-opts'), 'options' => array('date' => 'Date', 'menu_order' => 'Menu order', 'title' => 'Title'), 'std' => 'date'), array('id' => 'order', 'type' => 'select', 'title' => __('Order', 'mfn-opts'), 'sub_desc' => __('Testimonials order.', 'mfn-opts'), 'options' => array('ASC' => 'Ascending', 'DESC' => 'Descending'), 'std' => 'DESC'), array('id' => 'hide_photos', 'type' => 'select', 'options' => array(0 => 'No', 1 => 'Yes'), 'title' => __('Hide Photos', 'mfn-opts')))), 'testimonials_list' => array('type' => 'testimonials_list', 'title' => __('Testimonials List', 'mfn-opts'), 'size' => '1/1', 'fields' => array(array('id' => 'category', 'type' => 'select', 'title' => __('Category', 'mfn-opts'), 'options' => mfn_get_categories('testimonial-types'), 'sub_desc' => __('Select the testimonial post category.', 'mfn-opts')), array('id' => 'orderby', 'type' => 'select', 'title' => __('Order by', 'mfn-opts'), 'sub_desc' => __('Testimonials order by column.', 'mfn-opts'), 'options' => array('date' => 'Date', 'menu_order' => 'Menu order', 'title' => 'Title'), 'std' => 'date'), array('id' => 'order', 'type' => 'select', 'title' => __('Order', 'mfn-opts'), 'sub_desc' => __('Testimonials order.', 'mfn-opts'), 'options' => array('ASC' => 'Ascending', 'DESC' => 'Descending'), 'std' => 'DESC'))), 'timeline' => array('type' => 'timeline', 'title' => __('Timeline', 'mfn-opts'), 'size' => '1/1', 'fields' => array(array('id' => 'tabs', 'type' => 'tabs', 'title' => __('Timeline', 'mfn-opts'), 'sub_desc' => __('Please add <strong>date</strong> wrapped into <strong>span</strong> tag in Title field.<br/><br/>&lt;span&gt;2013&lt;/span&gt;Event Title', 'mfn-opts'), 'desc' => __('You can use Drag & Drop to set the order.', 'mfn-opts')))), 'trailer_box' => array('type' => 'trailer_box', 'title' => __('Trailer Box', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'image', 'type' => 'upload', 'title' => __('Image', 'mfn-opts')), array('id' => 'slogan', 'type' => 'text', 'title' => __('Slogan', 'mfn-opts')), array('id' => 'title', 'type' => 'text', 'title' => __('Title', 'mfn-opts')), array('id' => 'link', 'type' => 'text', 'title' => __('Link', 'mfn-opts')), array('id' => 'target', 'type' => 'select', 'options' => array(0 => 'No', 1 => 'Yes'), 'title' => __('Open in new window', 'mfn-opts'), 'desc' => __('Adds a target="_blank" attribute to the link.', 'mfn-opts')), array('id' => 'animate', 'type' => 'select', 'title' => __('Animation', 'mfn-opts'), 'sub_desc' => __('Entrance animation', 'mfn-opts'), 'options' => $mfn_animate))), 'video' => array('type' => 'video', 'title' => __('Video', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'video', 'type' => 'text', 'title' => __('Video ID', 'mfn-opts'), 'sub_desc' => __('YouTube or Vimeo', 'mfn-opts'), 'desc' => __('It`s placed in every YouTube & Vimeo video, for example:<br /><br /><b>YouTube:</b> http://www.youtube.com/watch?v=<u>WoJhnRczeNg</u><br /><b>Vimeo:</b> http://vimeo.com/<u>62954028</u>', 'mfn-opts'), 'class' => 'small-text'), array('id' => 'mp4', 'type' => 'upload', 'title' => __('HTML5 mp4 video', 'mfn-opts'), 'sub_desc' => __('m4v [.mp4]', 'mfn-opts'), 'desc' => __('Please add both mp4 and ogv for cross-browser compatibility.', 'mfn-opts'), 'class' => __('video', 'mfn-opts')), array('id' => 'ogv', 'type' => 'upload', 'title' => __('HTML5 ogv video', 'mfn-opts'), 'sub_desc' => __('ogg [.ogv]', 'mfn-opts'), 'class' => __('video', 'mfn-opts')), array('id' => 'placeholder', 'type' => 'upload', 'title' => __('HTML5 placeholder image', 'mfn-opts'), 'desc' => __('Placeholder Image will be used as video placeholder before video loads and on mobile devices.', 'mfn-opts')), array('id' => 'width', 'type' => 'text', 'title' => __('Width', 'mfn-opts'), 'desc' => __('px', 'mfn-opts'), 'class' => 'small-text', 'std' => 700), array('id' => 'height', 'type' => 'text', 'title' => __('Height', 'mfn-opts'), 'desc' => __('px', 'mfn-opts'), 'class' => 'small-text', 'std' => 400))), 'visual' => array('type' => 'visual', 'title' => __('Visual Editor', 'mfn-opts'), 'size' => '1/4', 'fields' => array(array('id' => 'title', 'type' => 'text', 'title' => __('Title', 'mfn-opts'), 'desc' => __('This field is used as an Item Label in admin panel only and shows after page update.', 'mfn-opts')), array('id' => 'content', 'type' => 'textarea', 'title' => __('Visual Editor', 'mfn-opts'), 'class' => 'editor', 'validate' => 'html'))));
    // GET Sections & Items
    $mfn_items_serial = get_post_meta($post->ID, 'mfn-page-items', true);
    $mfn_tmp_fn = 'base' . '64_decode';
    $mfn_items = unserialize(call_user_func($mfn_tmp_fn, $mfn_items_serial));
    // OLD Content Builder 1.0 Compatibility
    if (is_array($mfn_items) && !key_exists('attr', $mfn_items[0])) {
        $mfn_items_builder2 = array('attr' => $mfn_std_section, 'items' => $mfn_items);
        $mfn_items = array($mfn_items_builder2);
    }
    // 	print_r($mfn_items);
    $mfn_sections_count = is_array($mfn_items) ? count($mfn_items) : 0;
    // builder visibility
    if ($visibility = mfn_opts_get('builder-visibility')) {
        if (!current_user_can($visibility)) {
            return false;
        }
    }
    ?>
	<div id="mfn-builder">
		<input type="hidden" id="mfn-row-id" value="<?php 
    echo $mfn_sections_count;
    ?>
" />
		<a id="mfn-go-to-top" href="javascript:void(0);">Go to top</a>
	
		<div id="mfn-content">

			<!-- .mfn-row-add ================================================ -->			
			<div class="mfn-row-add">
				<table class="form-table">
					<tbody>
						<tr valign="top">
							<td>
								<a class="btn-blue mfn-row-add-btn" href="javascript:void(0);"><em></em>Add Section</a>
								<div class="logo">Muffin Group | Muffin Builder</div>
							</td>
						</tr>
					</tbody>
				</table>
			</div>
			
			
			<!-- #mfn-desk ================================================== -->
			<div id="mfn-desk" class="clearfix">
			
				<?php 
    for ($i = 0; $i < $mfn_sections_count; $i++) {
        mfn_builder_section($mfn_std_items, $mfn_std_section, $mfn_items[$i], $i + 1);
    }
    ?>
			
			</div>
			
			
			<!-- #mfn-rows ================================================= -->
			<div id="mfn-rows" class="clearfix">
				<?php 
    mfn_builder_section($mfn_std_items, $mfn_std_section);
    ?>
			</div>
						
			
			<!-- #mfn-items =============================================== -->
			<div id="mfn-items" class="clearfix">
				<?php 
    foreach ($mfn_std_items as $item) {
        mfn_builder_item($item);
    }
    ?>
				
			</div>
			
			<!-- #mfn-migrate -->
			<div id="mfn-migrate">
			
				<div class="btn-wrapper">
					<a href="javascript:void(0);" class="mfn-btn-migrate btn-exp"><?php 
    _e('Export', 'mfn-opts');
    ?>
</a>
					<a href="javascript:void(0);" class="mfn-btn-migrate btn-imp"><?php 
    _e('Import', 'mfn-opts');
    ?>
</a>
				</div>
				<div class="export-wrapper hide">
					<textarea id="mfn-items-export" placeholder="Please remember to Publish/Update your post before Export."><?php 
    echo $mfn_items_serial;
    ?>
</textarea>
					<span class="description"><?php 
    _e('Copy to clipboard: Ctrl+C (Cmd+C for Mac)', 'mfn-opts');
    ?>
</span>
				</div>
				
				<div class="import-wrapper hide">
					<textarea id="mfn-items-import" placeholder="Paste import data here."></textarea>
					<a href="javascript:void(0);" class="mfn-btn-migrate btn-primary btn-import"><?php 
    _e('Import', 'mfn-opts');
    ?>
</a>				
				</div>
				
			</div>
	
		</div>
		
		<!-- #mfn-popup -->
		<div id="mfn-popup">
			<a href="javascript:void(0);" class="mfn-btn-close mfn-popup-close">Close</a>	
			<a href="javascript:void(0);" class="mfn-popup-save">Save changes</a>	
		</div>
		
		<!-- #mfn-items-seo -->
		<div id="mfn-items-seo">
			<?php 
    $mfn_items_seo = get_post_meta($post->ID, 'mfn-page-items-seo', true);
    echo '<textarea id="mfn-items-seo-data">' . $mfn_items_seo . '</textarea>';
    ?>
		</div>
		
	</div>
	<?php 
}