'."\n" . '
'."\n";
}
//End Heading
//switch statement to handle various options type
switch ( $value['type'] ) {
//text input
case 'text':
$t_value = '';
$t_value = stripslashes($smof_data[$value['id']]);
$mini ='';
if(!isset($value['mod'])) $value['mod'] = '';
if($value['mod'] == 'mini') { $mini = 'mini';}
$output .= '
';
break;
//select option
case 'select':
$mini ='';
if(!isset($value['mod'])) $value['mod'] = '';
if($value['mod'] == 'mini') { $mini = 'mini';}
$output .= '
';
$output .= '';
foreach ($value['options'] as $select_ID => $option) {
$output .= ' '.$option.'';
}
$output .= '
';
break;
//textarea option
case 'textarea':
$cols = '8';
$ta_value = '';
if(isset($value['options'])){
$ta_options = $value['options'];
if(isset($ta_options['cols'])){
$cols = $ta_options['cols'];
}
}
$ta_value = stripslashes($smof_data[$value['id']]);
$output .= '
';
break;
//radiobox option
case "radio":
$checked = (isset($smof_data[$value['id']])) ? checked($smof_data[$value['id']], $option, false) : '';
foreach($value['options'] as $option=>$name) {
$output .= '
'.$name.' ';
}
break;
//checkbox option
case 'checkbox':
if (!isset($smof_data[$value['id']])) {
$smof_data[$value['id']] = 0;
}
$fold = '';
if (array_key_exists("folds",$value)) $fold="fld ";
$output .= '
';
$output .= '
';
break;
//multiple checkbox option
case 'multicheck':
(isset($smof_data[$value['id']]))? $multi_stored = $smof_data[$value['id']] : $multi_stored="";
foreach ($value['options'] as $key => $option) {
if (!isset($multi_stored[$key])) {$multi_stored[$key] = '';}
$of_key_string = $value['id'] . '_' . $key;
$output .= '
'. $option .' ';
}
break;
//ajax image upload option
case 'upload':
if(!isset($value['mod'])) $value['mod'] = '';
$output .= Options_Machine::optionsframework_uploader_function($value['id'],$value['std'],$value['mod']);
break;
// native media library uploader - @uses optionsframework_media_uploader_function()
case 'media':
$_id = strip_tags( strtolower($value['id']) );
$int = '';
$int = optionsframework_mlu_get_silentpost( $_id );
if(!isset($value['mod'])) $value['mod'] = '';
$output .= Options_Machine::optionsframework_media_uploader_function( $value['id'], $value['std'], $int, $value['mod'] ); // New AJAX Uploader using Media Library
break;
//colorpicker option
case 'color':
$output .= '
';
$output .= '
';
break;
//typography option
case 'typography':
$typography_stored = isset($smof_data[$value['id']]) ? $smof_data[$value['id']] : $value['std'];
/* Font Size */
if(isset($typography_stored['size'])) {
$output .= '
';
$output .= '';
for ($i = 9; $i < 29; $i++){
$test = $i.'px';
$output .= ''. $i .'px ';
}
$output .= '
';
}
/* Line Height */
if(isset($typography_stored['height'])) {
$output .= '
';
$output .= '';
for ($i = 20; $i < 38; $i++){
$test = $i.'px';
$output .= ''. $i .'px ';
}
$output .= '
';
}
/* Font Face */
if(isset($typography_stored['face'])) {
$output .= '
';
$output .= '';
$faces = array(
'Helvetica Neue'=>'Helvetica Neue',
'Verdana, Geneva'=>'Verdana, Geneva',
'Trebuchet'=>'Trebuchet',
'Georgia' =>'Georgia',
'Times New Roman'=>'Times New Roman',
'Tahoma, Geneva'=>'Tahoma, Geneva',
'Palatino'=>'Palatino' );
global $tw_googlefonts;
$facess = array_merge($faces, $tw_googlefonts);
foreach ($facess as $i=>$face) {
$output .= ''. $face .' ';
}
$output .= '
';
}
/* Font Weight */
if(isset($typography_stored['style'])) {
$output .= '
';
$output .= '';
$styles = array('normal'=>'Normal',
'italic'=>'Italic',
'bold'=>'Bold',
'bold italic'=>'Bold Italic');
foreach ($styles as $i=>$style){
$output .= ''. $style .' ';
}
$output .= '
';
}
/* Font Color */
if(isset($typography_stored['color'])) {
$output .= '
';
$output .= '
';
}
break;
//border option
case 'border':
/* Border Width */
$border_stored = $smof_data[$value['id']];
$output .= '
';
$output .= '';
for ($i = 0; $i < 21; $i++){
$output .= ''. $i .' '; }
$output .= '
';
/* Border Style */
$output .= '
';
$output .= '';
$styles = array('none'=>'None',
'solid'=>'Solid',
'dashed'=>'Dashed',
'dotted'=>'Dotted');
foreach ($styles as $i=>$style){
$output .= ''. $style .' ';
}
$output .= '
';
/* Border Color */
$output .= '
';
$output .= '
';
break;
//images checkbox - use image as checkboxes
case 'images':
$i = 0;
$select_value = (isset($smof_data[$value['id']])) ? $smof_data[$value['id']] : '';
foreach ($value['options'] as $key => $option)
{
$i++;
$checked = '';
$selected = '';
if(NULL!=checked($select_value, $key, false)) {
$checked = checked($select_value, $key, false);
$selected = 'of-radio-img-selected';
}
$output .= '
';
$output .= ' ';
$output .= ''. $key .'
';
$output .= ' ';
$output .= ' ';
}
break;
//info (for small intro box etc)
case "info":
$info_text = $value['std'];
$output .= '
'.$info_text.'
';
break;
//display a single image
case "image":
$src = $value['std'];
$output .= '
';
break;
//tab heading
case 'heading':
if($counter >= 2){
$output .= '
'."\n";
}
$header_class = str_replace(' ','',strtolower($value['name']));
$jquery_click_hook = str_replace(' ', '', strtolower($value['name']) );
$jquery_click_hook = "of-option-" . $jquery_click_hook;
$menu .= '';
$output .= '
'.$value['name'].' '."\n";
break;
//drag & drop slide manager
case 'slider':
$_id = strip_tags( strtolower($value['id']) );
$int = '';
$int = optionsframework_mlu_get_silentpost( $_id );
$output .= '
';
$slides = $smof_data[$value['id']];
$count = count($slides);
if ($count < 2) {
$oldorder = 1;
$order = 1;
$output .= Options_Machine::optionsframework_slider_function($value['id'],$value['std'],$oldorder,$order,$int);
} else {
$i = 0;
foreach ($slides as $slide) {
$oldorder = $slide['order'];
$i++;
$order = $i;
$output .= Options_Machine::optionsframework_slider_function($value['id'],$value['std'],$oldorder,$order,$int);
}
}
$output .= ' ';
$output .= '
Add New Slide ';
break;
//drag & drop block manager
case 'sorter':
$sortlists = isset($smof_data[$value['id']]) && !empty($smof_data[$value['id']]) ? $smof_data[$value['id']] : $value['std'];
$output .= '
';
if ($sortlists) {
foreach ($sortlists as $group=>$sortlist) {
$output .= '
';
$output .= ''.$group.' ';
foreach ($sortlist as $key => $list) {
$output .= ' ';
if ($key != "placebo") {
$output .= '';
$output .= ' ';
$output .= $list;
$output .= ' ';
}
}
$output .= ' ';
}
}
$output .= '
';
break;
//background images option
case 'tiles':
$i = 0;
$select_value = isset($smof_data[$value['id']]) && !empty($smof_data[$value['id']]) ? $smof_data[$value['id']] : '';
foreach ($value['options'] as $key => $option)
{
$i++;
$checked = '';
$selected = '';
if(NULL!=checked($select_value, $option, false)) {
$checked = checked($select_value, $option, false);
$selected = 'of-radio-tile-selected';
}
$output .= '
';
$output .= ' ';
$output .= '
';
$output .= ' ';
}
break;
//backup and restore options data
case 'backup':
$instructions = $value['desc'];
$backup = get_option(BACKUPS);
if(!isset($backup['backup_log'])) {
$log = 'No backups yet';
} else {
$log = $backup['backup_log'];
}
$output .= '
';
$output .= '
'.$instructions."\n";
$output .= '
'. __('Last Backup : ').''.$log.'
'."\n";
$output .= '
Backup Options ';
$output .= '
Restore Options ';
$output .= '
';
break;
//export or import data between different installs
case 'transfer':
$instructions = $value['desc'];
$output .= '
'."\n";
$output .= '
Import Options ';
break;
// google font field
case 'select_google_font':
$output .= '
';
$output .= '';
foreach ($value['options'] as $select_key => $option) {
$output .= ' '.$option.'';
}
$output .= '
';
if(isset($value['preview']['text'])){
$g_text = $value['preview']['text'];
} else {
$g_text = '0123456789 ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz';
}
if(isset($value['preview']['size'])) {
$g_size = 'style="font-size: '. $value['preview']['size'] .';"';
} else {
$g_size = '';
}
$output .= '
'. $g_text .'
';
break;
//JQuery UI Slider
case 'sliderui':
$s_val = $s_min = $s_max = $s_step = $s_edit = '';//no errors, please
$s_val = stripslashes($smof_data[$value['id']]);
if(!isset($value['min'])){ $s_min = '0'; }else{ $s_min = $value['min']; }
if(!isset($value['max'])){ $s_max = $s_min + 1; }else{ $s_max = $value['max']; }
if(!isset($value['step'])){ $s_step = '1'; }else{ $s_step = $value['step']; }
if(!isset($value['edit'])){
$s_edit = ' readonly="readonly"';
}
else
{
$s_edit = '';
}
if ($s_val == '') $s_val = $s_min;
//values
$s_data = 'data-id="'.$value['id'].'" data-val="'.$s_val.'" data-min="'.$s_min.'" data-max="'.$s_max.'" data-step="'.$s_step.'"';
//html output
$output .= '
';
$output .= '
';
break;
//Switch option
case 'switch':
if (!isset($smof_data[$value['id']])) {
$smof_data[$value['id']] = 0;
}
$fold = '';
if (array_key_exists("folds",$value)) $fold="s_fld ";
$cb_enabled = $cb_disabled = '';//no errors, please
//Get selected
if ($smof_data[$value['id']] == 1){
$cb_enabled = ' selected';
$cb_disabled = '';
}else{
$cb_enabled = '';
$cb_disabled = ' selected';
}
//Label ON
if(!isset($value['on'])){
$on = "On";
}else{
$on = $value['on'];
}
//Label OFF
if(!isset($value['off'])){
$off = "Off";
}else{
$off = $value['off'];
}
$output .= '
';
$output .= ''. $on .' ';
$output .= ''. $off .' ';
$output .= ' ';
$output .= ' ';
$output .= '
';
break;
}
//description of each option
if ( $value['type'] != 'heading') {
if(!isset($value['desc'])){ $explain_value = ''; } else{
$explain_value = '
'. $value['desc'] .'
'."\n";
}
$output .= '