当前位置: 首页>>代码示例>>PHP>>正文


PHP Options_Framework::_optionsframework_options方法代码示例

本文整理汇总了PHP中Options_Framework::_optionsframework_options方法的典型用法代码示例。如果您正苦于以下问题:PHP Options_Framework::_optionsframework_options方法的具体用法?PHP Options_Framework::_optionsframework_options怎么用?PHP Options_Framework::_optionsframework_options使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Options_Framework的用法示例。


在下文中一共展示了Options_Framework::_optionsframework_options方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: optionsframework_fields

 /**
  * Generates the options fields that are used in the form.
  */
 static function optionsframework_fields()
 {
     global $allowedtags;
     $optionsframework_settings = get_option(ONETONE_OPTIONS_PREFIXED . 'optionsframework');
     // Gets the unique option id
     if (isset($optionsframework_settings['id'])) {
         $option_name = $optionsframework_settings['id'];
     } else {
         $option_name = ONETONE_OPTIONS_PREFIXED . 'optionsframework';
     }
     $settings = get_option($option_name);
     $options =& Options_Framework::_optionsframework_options();
     $counter = 0;
     $menu = '';
     foreach ($options as $value) {
         $val = '';
         $select_value = '';
         $output = '';
         // Wrap all options
         if ($value['type'] != "heading" && $value['type'] != "info") {
             // Keep all ids lowercase with no spaces
             $value['id'] = preg_replace('/[^a-zA-Z0-9._\\-]/', '', strtolower($value['id']));
             $id = 'section-' . $value['id'];
             $class = 'section';
             if (isset($value['type'])) {
                 $class .= ' section-' . $value['type'];
             }
             if (isset($value['class'])) {
                 $class .= ' ' . $value['class'];
             }
             $output .= '<div id="' . esc_attr($id) . '" class="' . esc_attr($class) . '">' . "\n";
             if (isset($value['name'])) {
                 $output .= '<h4 class="heading">' . esc_html($value['name']) . '</h4>' . "\n";
             }
             if ($value['type'] != 'editor') {
                 $output .= '<div class="option">' . "\n" . '<div class="controls">' . "\n";
             } else {
                 $output .= '<div class="option">' . "\n" . '<div>' . "\n";
             }
         }
         // Set default value to $val
         if (isset($value['std'])) {
             $val = $value['std'];
         }
         // If the option is already saved, override $val
         if ($value['type'] != 'heading' && $value['type'] != 'info') {
             if (isset($settings[$value['id']])) {
                 $val = $settings[$value['id']];
                 // Striping slashes of non-array options
                 if (!is_array($val)) {
                     $val = stripslashes($val);
                 }
             }
         }
         // If there is a description save it for labels
         $explain_value = '';
         if (isset($value['desc'])) {
             $explain_value = $value['desc'];
         }
         if (has_filter('optionsframework_' . $value['type'])) {
             $output .= apply_filters('optionsframework_' . $value['type'], $option_name, $value, $val);
         }
         switch ($value['type']) {
             // Basic text input
             case 'text':
                 $output .= '<input id="' . esc_attr($value['id']) . '" class="of-input" name="' . esc_attr($option_name . '[' . $value['id'] . ']') . '" type="text" value="' . esc_attr($val) . '" />';
                 break;
                 // Password input
             // Password input
             case 'password':
                 $output .= '<input id="' . esc_attr($value['id']) . '" class="of-input" name="' . esc_attr($option_name . '[' . $value['id'] . ']') . '" type="password" value="' . esc_attr($val) . '" />';
                 break;
                 // Textarea
             // Textarea
             case 'textarea':
                 $rows = '8';
                 if (isset($value['settings']['rows'])) {
                     $custom_rows = $value['settings']['rows'];
                     if (is_numeric($custom_rows)) {
                         $rows = $custom_rows;
                     }
                 }
                 $val = stripslashes($val);
                 $output .= '<textarea id="' . esc_attr($value['id']) . '" class="of-input" name="' . esc_attr($option_name . '[' . $value['id'] . ']') . '" rows="' . $rows . '">' . esc_textarea($val) . '</textarea>';
                 break;
                 // Select Box
             // Select Box
             case 'select':
                 $output .= '<select class="of-input" name="' . esc_attr($option_name . '[' . $value['id'] . ']') . '" id="' . esc_attr($value['id']) . '">';
                 foreach ($value['options'] as $key => $option) {
                     $output .= '<option' . selected($val, $key, false) . ' value="' . esc_attr($key) . '">' . esc_html($option) . '</option>';
                 }
                 $output .= '</select>';
                 break;
                 // Radio Box
             // Radio Box
             case "radio":
//.........这里部分代码省略.........
开发者ID:vaiiho,项目名称:onetone-custom,代码行数:101,代码来源:class-options-interface.php

示例2: get_default_values

 /**
  * Get the default values for all the theme options
  *
  * Get an array of all default values as set in
  * options.php. The 'id','std' and 'type' keys need
  * to be defined in the configuration array. In the
  * event that these keys are not present the option
  * will not be included in this function's output.
  *
  * @return array Re-keyed options configuration array.
  *
  */
 function get_default_values()
 {
     $output = array();
     $config =& Options_Framework::_optionsframework_options();
     foreach ((array) $config as $option) {
         if (!isset($option['id'])) {
             continue;
         }
         if (!isset($option['std'])) {
             continue;
         }
         if (!isset($option['type'])) {
             continue;
         }
         if (has_filter('of_sanitize_' . $option['type'])) {
             $output[$option['id']] = apply_filters('of_sanitize_' . $option['type'], $option['std'], $option);
         }
     }
     return $output;
 }
开发者ID:acabouet,项目名称:PortlandCannaConnection,代码行数:32,代码来源:class-options-framework-admin.php

示例3: reset_options

function reset_options()
{
    global $themename;
    $options =& Options_Framework::_optionsframework_options();
    foreach ($options as $option) {
        if (isset($option['id'])) {
            $option_std = $option['std'];
            $option_res[$option['id']] = $option['std'];
        }
    }
    update_option(vpanel_options, $option_res);
    die(1);
}
开发者ID:bunnywong,项目名称:freshlinker,代码行数:13,代码来源:main_functions.php

示例4: optionsframework_fields

 /**
  * Generates the options fields that are used in the form.
  */
 static function optionsframework_fields()
 {
     global $allowedtags;
     $options_framework = new Options_Framework();
     $option_name = $options_framework->get_option_name();
     $settings = get_option($option_name);
     $options =& Options_Framework::_optionsframework_options();
     $counter = 0;
     $menu = '';
     foreach ($options as $value) {
         $val = '';
         $select_value = '';
         $output = '';
         // Wrap all options
         if ($value['type'] != "heading" && $value['type'] != "info" && $value['type'] != "title" && $value['type'] != 'groupstart' && $value['type'] != 'groupend') {
             // Keep all ids lowercase with no spaces
             $value['id'] = preg_replace('/[^a-zA-Z0-9._\\-]/', '', strtolower($value['id']));
             $id = 'section-' . $value['id'];
             $class = 'section';
             if (isset($value['type'])) {
                 $class .= ' section-' . $value['type'];
             }
             if (isset($value['class'])) {
                 $class .= ' ' . $value['class'];
             }
             $output .= '<div id="' . esc_attr($id) . '" class="' . esc_attr($class) . '">' . "\n";
             if (isset($value['name'])) {
                 $output .= '<h4 class="heading">' . esc_html($value['name']) . '</h4>' . "\n";
             }
             if ($value['type'] != 'editor') {
                 $output .= '<div class="option">' . "\n" . '<div class="controls">' . "\n";
             } else {
                 $output .= '<div class="option">' . "\n" . '<div>' . "\n";
             }
         }
         // Set default value to $val
         if (isset($value['std'])) {
             $val = $value['std'];
         }
         // If the option is already saved, override $val
         if ($value['type'] != 'heading' && $value['type'] != 'info' && $value['type'] != "title" && $value['type'] != 'groupstart' && $value['type'] != 'groupend') {
             if (isset($settings[$value['id']])) {
                 $val = $settings[$value['id']];
                 // Striping slashes of non-array options
                 if (!is_array($val)) {
                     $val = stripslashes($val);
                 }
             }
         }
         // If there is a description save it for labels
         $explain_value = '';
         if (isset($value['desc'])) {
             $explain_value = $value['desc'];
         }
         // Set the placeholder if one exists
         $placeholder = '';
         if (isset($value['placeholder'])) {
             $placeholder = ' placeholder="' . esc_attr($value['placeholder']) . '"';
         }
         if (has_filter('optionsframework_' . $value['type'])) {
             $output .= apply_filters('optionsframework_' . $value['type'], $option_name, $value, $val);
         }
         switch ($value['type']) {
             // Basic text input
             case 'text':
                 $output .= '<input id="' . esc_attr($value['id']) . '" class="of-input" name="' . esc_attr($option_name . '[' . $value['id'] . ']') . '" type="text" value="' . esc_attr($val) . '"' . $placeholder . ' />';
                 break;
                 // Basic number input
             // Basic number input
             case 'number':
                 $output .= '<input id="' . esc_attr($value['id']) . '" class="of-input" name="' . esc_attr($option_name . '[' . $value['id'] . ']') . '" type="number" min="1" max="1000" value="' . esc_attr($val) . '"' . $placeholder . ' step="1" />';
                 break;
                 // Password input
             // Password input
             case 'password':
                 $output .= '<input id="' . esc_attr($value['id']) . '" class="of-input" name="' . esc_attr($option_name . '[' . $value['id'] . ']') . '" type="password" value="' . esc_attr($val) . '" />';
                 break;
                 // Textarea
             // Textarea
             case 'textarea':
                 $rows = '8';
                 //if ( isset( $value['settings']['rows'] ) ) {
                 //					$custom_rows = $value['settings']['rows'];
                 //					if ( is_numeric( $custom_rows ) ) {
                 //						$rows = $custom_rows;
                 //					}
                 //				}
                 if (isset($value['rows'])) {
                     $custom_rows = $value['rows'];
                     if (is_numeric($custom_rows)) {
                         $rows = $custom_rows;
                     }
                 }
                 $val = stripslashes($val);
                 $output .= '<textarea id="' . esc_attr($value['id']) . '" class="of-input" name="' . esc_attr($option_name . '[' . $value['id'] . ']') . '" rows="' . $rows . '"' . $placeholder . '>' . esc_textarea($val) . '</textarea>';
                 break;
                 //Ap-Mag Textarea
//.........这里部分代码省略.........
开发者ID:akshayxhtmljunkies,项目名称:brownglock,代码行数:101,代码来源:class-options-interface.php

示例5: optionsframework_fields

    /**
     * Generates the options fields that are used in the form.
     */
    static function optionsframework_fields()
    {
        global $allowedtags;
        $optionsframework_settings = get_option('optionsframework');
        // Gets the unique option id
        if (isset($optionsframework_settings['id'])) {
            $option_name = $optionsframework_settings['id'];
        } else {
            $option_name = 'optionsframework';
        }
        $settings = get_option($option_name);
        $options =& Options_Framework::_optionsframework_options();
        $counter = 0;
        $menu = '';
        foreach ($options as $value) {
            $val = '';
            $select_value = '';
            $output = '';
            // Wrap all options
            if ($value['type'] != "heading" && $value['type'] != "info") {
                // Keep all ids lowercase with no spaces
                $value['id'] = preg_replace('/[^a-zA-Z0-9._\\-]/', '', strtolower($value['id']));
                $id = 'section-' . $value['id'];
                if ($value['type'] != "widget-area") {
                    $class = 'section';
                } else {
                    $class = 'section2';
                }
                if (isset($value['type'])) {
                    $class .= ' section-' . $value['type'];
                }
                if (isset($value['class'])) {
                    $class .= ' ' . $value['class'];
                }
                $output .= '<div id="' . esc_attr($id) . '" class="' . esc_attr($class) . '">' . "\n";
                if (isset($value['name'])) {
                    $output .= '<h4 class="heading">' . esc_html($value['name']) . '</h4>' . "\n";
                }
                if ($value['type'] != 'editor') {
                    $output .= '<div class="option">' . "\n" . '<div class="controls">' . "\n";
                } else {
                    $output .= '<div class="option">' . "\n" . '<div>' . "\n";
                }
            }
            // Set default value to $val
            if (isset($value['std'])) {
                $val = $value['std'];
            }
            // If the option is already saved, override $val
            if ($value['type'] != 'heading' && $value['type'] != 'info') {
                if (isset($settings[$value['id']])) {
                    $val = $settings[$value['id']];
                    // Striping slashes of non-array options
                    if (!is_array($val)) {
                        $val = stripslashes($val);
                    }
                }
            }
            // If there is a description save it for labels
            $explain_value = '';
            if (isset($value['desc'])) {
                $explain_value = $value['desc'];
            }
            if (has_filter('optionsframework_' . $value['type'])) {
                $output .= apply_filters('optionsframework_' . $value['type'], $option_name, $value, $val);
            }
            switch ($value['type']) {
                // Basic text input
                case 'text':
                    $output .= '<input id="' . esc_attr($value['id']) . '" class="of-input" name="' . esc_attr($option_name . '[' . $value['id'] . ']') . '" type="text" value="' . esc_attr($val) . '" />';
                    break;
                    // Password input
                // Password input
                case 'password':
                    $output .= '<input id="' . esc_attr($value['id']) . '" class="of-input" name="' . esc_attr($option_name . '[' . $value['id'] . ']') . '" type="password" value="' . esc_attr($val) . '" />';
                    break;
                    // Textarea
                // Textarea
                case 'textarea':
                    $rows = '8';
                    if (isset($value['settings']['rows'])) {
                        $custom_rows = $value['settings']['rows'];
                        if (is_numeric($custom_rows)) {
                            $rows = $custom_rows;
                        }
                    }
                    $val = stripslashes($val);
                    $output .= '<textarea id="' . esc_attr($value['id']) . '" class="of-input" name="' . esc_attr($option_name . '[' . $value['id'] . ']') . '" rows="' . $rows . '">' . esc_textarea($val) . '</textarea>';
                    break;
                    // Select Box
                // Select Box
                case 'select':
                    $output .= '<select class="of-input" name="' . esc_attr($option_name . '[' . $value['id'] . ']') . '" id="' . esc_attr($value['id']) . '">';
                    foreach ($value['options'] as $key => $option) {
                        $output .= '<option' . selected($val, $key, false) . ' value="' . esc_attr($key) . '">' . esc_html($option) . '</option>';
                    }
                    $output .= '</select>';
//.........这里部分代码省略.........
开发者ID:Nelsonsanu,项目名称:ultimum,代码行数:101,代码来源:class-options-interface.php

示例6: optionsframework_fields

    /**
     * Generates the options fields that are used in the form.
     */
    static function optionsframework_fields()
    {
        global $allowedtags, $themename;
        $optionsframework_settings = get_option(vpanel_options);
        // Gets the unique option id
        if (isset($optionsframework_settings['id'])) {
            $option_name = $optionsframework_settings['id'];
        } else {
            $option_name = vpanel_options;
        }
        $settings = get_option($option_name);
        $options =& Options_Framework::_optionsframework_options();
        $counter = 0;
        $menu = '';
        foreach ($options as $value) {
            $val = '';
            $select_value = '';
            $output = '';
            // Wrap all options
            if ($value['type'] != "heading" && $value['type'] != "info" && $value['type'] != "content" && $value['type'] != 'hidden') {
                // Keep all ids lowercase with no spaces
                $value['id'] = preg_replace('/[^a-zA-Z0-9._\\-]/', '', strtolower($value['id']));
                $id = 'section-' . $value['id'];
                $class = 'section';
                if (isset($value['type'])) {
                    $class .= ' section-' . $value['type'];
                }
                if (isset($value['class'])) {
                    $class .= ' ' . $value['class'];
                }
                $output .= '<div id="' . esc_attr($id) . '" class="' . esc_attr($class) . '">' . "\n";
                if (isset($value['name'])) {
                    $output .= '<h4 class="heading">' . esc_html($value['name']) . '</h4>' . "\n";
                }
                if ($value['type'] != 'editor' && $value['type'] != 'upload' && $value['type'] != 'background' && $value['type'] != 'sidebar' && $value['type'] != 'roles') {
                    $output .= '<div class="option">' . "\n" . '<div class="controls">' . "\n";
                } else {
                    if ($value['type'] == 'upload' || $value['type'] == 'background') {
                        $output .= '<div class="option">' . "\n" . '<div class="controls controls-upload">' . "\n";
                    } else {
                        if ($value['type'] == 'sidebar') {
                            $output .= '<div class="option">' . "\n" . '<div class="controls controls-sidebar">' . "\n";
                        } else {
                            if ($value['type'] == 'roles') {
                                $output .= '<div class="option">' . "\n" . '<div class="controls controls-role">' . "\n";
                            } else {
                                $output .= '<div class="option">' . "\n" . '<div>' . "\n";
                            }
                        }
                    }
                }
            }
            // Set default value to $val
            if (isset($value['std'])) {
                $val = $value['std'];
            }
            // If the option is already saved, override $val
            if ($value['type'] != 'heading' && $value['type'] != 'info' && $value['type'] != 'content') {
                if (isset($settings[$value['id']])) {
                    $val = $settings[$value['id']];
                    // Striping slashes of non-array options
                    if (!is_array($val)) {
                        $val = stripslashes($val);
                    }
                }
            }
            // If there is a description save it for labels
            $explain_value = '';
            if (isset($value['desc'])) {
                $explain_value = $value['desc'];
            }
            if (has_filter('vpanel_' . $value['type'])) {
                $output .= apply_filters('vpanel_' . $value['type'], $option_name, $value, $val);
            }
            switch ($value['type']) {
                // Basic text input
                case 'text':
                    $output .= '<input id="' . esc_attr($value['id']) . '" class="of-input" name="' . esc_attr($option_name . '[' . $value['id'] . ']') . '" type="text" value="' . esc_attr($val) . '">';
                    break;
                    // input hidden
                // input hidden
                case 'hidden':
                    $output .= '<input id="' . esc_attr($value['id']) . '" class="of-input" name="' . esc_attr($option_name . '[' . $value['id'] . ']') . '" type="hidden" value="' . esc_attr($val) . '">';
                    break;
                    // Password input
                // Password input
                case 'password':
                    $output .= '<input id="' . esc_attr($value['id']) . '" class="of-input" name="' . esc_attr($option_name . '[' . $value['id'] . ']') . '" type="password" value="' . esc_attr($val) . '">';
                    break;
                    // Textarea
                // Textarea
                case 'textarea':
                    $rows = '8';
                    if (isset($value['settings']['rows'])) {
                        $custom_rows = $value['settings']['rows'];
                        if (is_numeric($custom_rows)) {
                            $rows = $custom_rows;
//.........这里部分代码省略.........
开发者ID:bunnywong,项目名称:freshlinker,代码行数:101,代码来源:class-options-interface.php

示例7: optionsframework_fields

    /**
     * Generates the options fields that are used in the form.
     */
    static function optionsframework_fields()
    {
        global $allowedtags;
        $options_framework = new Options_Framework();
        $option_name = $options_framework->get_option_name();
        $settings = get_option($option_name);
        $options =& Options_Framework::_optionsframework_options();
        $counter = 0;
        $menu = '';
        foreach ($options as $value) {
            $val = '';
            $select_value = '';
            $output = '';
            // Wrap all options
            if ($value['type'] != "heading" && $value['type'] != "info") {
                // Keep all ids lowercase with no spaces
                $value['id'] = preg_replace('/[^a-zA-Z0-9._\\-]/', '', strtolower($value['id']));
                $id = 'section-' . $value['id'];
                $class = 'section';
                if (isset($value['type'])) {
                    $class .= ' section-' . $value['type'];
                }
                if (isset($value['class'])) {
                    $class .= ' ' . $value['class'];
                }
                $output .= '<div id="' . esc_attr($id) . '" class="' . esc_attr($class) . '">' . "\n";
                if (isset($value['name'])) {
                    $output .= '<h4 class="heading">' . esc_html($value['name']) . '</h4>' . "\n";
                }
                if ($value['type'] != 'editor') {
                    $output .= '<div class="option">' . "\n" . '<div class="controls">' . "\n";
                } else {
                    $output .= '<div class="option">' . "\n" . '<div>' . "\n";
                }
            }
            // Set default value to $val
            if (isset($value['std'])) {
                $val = $value['std'];
            }
            // If the option is already saved, override $val
            if ($value['type'] != 'heading' && $value['type'] != 'info') {
                if (isset($settings[$value['id']])) {
                    $val = $settings[$value['id']];
                    // Striping slashes of non-array options
                    if (!is_array($val)) {
                        $val = stripslashes($val);
                    }
                }
            }
            // If there is a description save it for labels
            $explain_value = '';
            if (isset($value['desc'])) {
                $explain_value = $value['desc'];
            }
            // Set the placeholder if one exists
            $placeholder = '';
            if (isset($value['placeholder'])) {
                $placeholder = ' placeholder="' . esc_attr($value['placeholder']) . '"';
            }
            if (has_filter('optionsframework_' . $value['type'])) {
                $output .= apply_filters('optionsframework_' . $value['type'], $option_name, $value, $val);
            }
            switch ($value['type']) {
                // Basic text input
                case 'text':
                    $output .= '<input id="' . esc_attr($value['id']) . '" class="of-input" name="' . esc_attr($option_name . '[' . $value['id'] . ']') . '" type="text" value="' . esc_attr($val) . '"' . $placeholder . ' />';
                    break;
                    // Basic hidded input
                // Basic hidded input
                case 'hidden':
                    $output .= '<input id="' . esc_attr($value['id']) . '" class="of-input" name="' . esc_attr($option_name . '[' . $value['id'] . ']') . '" type="hidden" value="' . esc_attr($val) . '"' . $placeholder . ' />';
                    break;
                    // Basic text input
                // Basic text input
                case 'url':
                    $output .= '<input id="' . esc_attr($value['id']) . '" class="of-input" name="' . esc_attr($option_name . '[' . $value['id'] . ']') . '" type="text" value="' . esc_url($val) . '"' . $placeholder . ' />';
                    break;
                    // Password input
                // Password input
                case 'password':
                    $output .= '<input id="' . esc_attr($value['id']) . '" class="of-input" name="' . esc_attr($option_name . '[' . $value['id'] . ']') . '" type="password" value="' . esc_attr($val) . '" />';
                    break;
                    // Textarea
                // Textarea
                case 'textarea':
                    $rows = '14';
                    if (isset($value['settings']['rows'])) {
                        $custom_rows = $value['settings']['rows'];
                        if (is_numeric($custom_rows)) {
                            $rows = $custom_rows;
                        }
                    }
                    $val = stripslashes($val);
                    $output .= '<textarea id="' . esc_attr($value['id']) . '" class="of-input" name="' . esc_attr($option_name . '[' . $value['id'] . ']') . '" rows="' . $rows . '"' . $placeholder . '>' . esc_textarea($val) . '</textarea>';
                    break;
                    // Select Box
                // Select Box
//.........这里部分代码省略.........
开发者ID:vedarajraviraj,项目名称:Arcis-Consulting,代码行数:101,代码来源:class-options-interface.php


注:本文中的Options_Framework::_optionsframework_options方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。