function section_persistent()
 {
     $header_options = array('navbar_fixed' => array('default' => false, 'version' => 'pro', 'type' => 'check', 'inputlabel' => __('Enable Fixed Navigation Bar', 'pagelines'), 'title' => __('Enable Fixed Navigation Bar', 'pagelines'), 'shortexp' => __('Applies a fixed navigation bar to the top of your site', 'pagelines'), 'exp' => __('Use this feature to add the NavBar section as a fixed navigation bar on the top of your site.', 'pagelines')), 'navbar_logo' => array('default' => $this->base_url . '/logo.png', 'version' => 'pro', 'type' => 'image_upload', 'inputlabel' => __('Fixed NavBar Logo', 'pagelines'), 'title' => __('Fixed NavBar - NavBar Logo', 'pagelines'), 'shortexp' => __('Applies a fixed navigation bar to the top of your site', 'pagelines'), 'exp' => __('Use this feature to add the NavBar section as a fixed navigation bar on the top of your site.<br/><br/><strong>Notes:</strong> <br/>1. Only visible in Fixed Mode.<br/>2. Image Height is constricted to a maximum 29px.', 'pagelines')), 'navbar_multi_option_theme' => array('default' => '', 'type' => 'multi_option', 'selectvalues' => array('fixed_navbar_theme' => array('default' => 'black-trans', 'type' => 'select', 'inputlabel' => __('Fixed NavBar - Select Theme', 'pagelines'), 'selectvalues' => array('black-trans' => array('name' => __('Black Transparent (Default)', 'pagelines')), 'blue' => array('name' => __('Blue', 'pagelines')), 'grey' => array('name' => __('Light Grey', 'pagelines')), 'orange' => array('name' => __('Orange', 'pagelines')), 'red' => array('name' => __('Red', 'pagelines')))), 'navbar_theme' => array('default' => 'black-trans', 'type' => 'select', 'inputlabel' => __('Standard NavBar - Select Theme', 'pagelines'), 'selectvalues' => array('black-trans' => array('name' => __('Black Transparent (Default)', 'pagelines')), 'blue' => array('name' => __('Blue', 'pagelines')), 'grey' => array('name' => __('Light Grey', 'pagelines')), 'orange' => array('name' => __('Orange', 'pagelines')), 'red' => array('name' => __('Red', 'pagelines'))))), 'title' => __('NavBar and Fixed NavBar Theme', 'pagelines'), 'shortexp' => __('Select the color and theme of the NavBar', 'pagelines'), 'exp' => __('The NavBar comes with several color options. Select one to automatically configure.', 'pagelines')), 'navbar_multi_option_menu' => array('default' => '', 'type' => 'multi_option', 'selectvalues' => array('fixed_navbar_menu' => array('default' => 'black-trans', 'type' => 'select_menu', 'inputlabel' => __('Fixed NavBar - Select Menu', 'pagelines')), 'navbar_menu' => array('default' => 'black-trans', 'type' => 'select_menu', 'inputlabel' => __('Standard NavBar - Select Menu', 'pagelines'))), 'title' => __('NavBar and Fixed NavBar Menu', 'pagelines'), 'shortexp' => __('Select the WordPress Menu for the NavBar(s)', 'pagelines'), 'exp' => __('The NavBar uses WordPress menus. Select one for use.', 'pagelines')), 'navbar_multi_check' => array('default' => '', 'type' => 'check_multi', 'selectvalues' => array('navbar_enable_hover' => array('inputlabel' => __('Activate dropdowns on hover.', 'pagelines')), 'fixed_navbar_alignment' => array('inputlabel' => __('Fixed NavBar - Align Menu Right? (Defaults Left)', 'pagelines')), 'fixed_navbar_hidesearch' => array('inputlabel' => __('Fixed NavBar - Hide Searchform?', 'pagelines')), 'navbar_alignment' => array('inputlabel' => __('Standard NavBar - Align Menu Right? (Defaults Left)', 'pagelines')), 'navbar_hidesearch' => array('inputlabel' => __('Standard NavBar - Hide Searchform?', 'pagelines'))), 'inputlabel' => __('Configure Options for NavBars', 'pagelines'), 'title' => __('NavBar and Fixed NavBar Configuration Options', 'pagelines'), 'shortexp' => __('Control various appearance options for the NavBars', 'pagelines'), 'exp' => ''), 'navbar_title' => array('type' => 'text', 'inputlabel' => __('NavBar Title', 'pagelines'), 'title' => __('NavBar Title', 'pagelines'), 'shortexp' => __('Applies text to NavBar on small screens. Not available on Fixed NavBar', 'pagelines'), 'exp' => __('Add text to the NavBar to serve as a title, but only displayed on small screens.', 'pagelines')));
     $option_args = array('name' => 'NavBar', 'array' => $header_options, 'icon' => $this->icon, 'position' => 6);
     pl_add_options_page($option_args);
     //pl_global_option( array( 'menu' => 'header_and_footer', 'options' => $header_options, 'location' => 'top' ) );
     if (ploption('navbar_fixed')) {
         build_passive_section(array('sid' => $this->class_name));
         add_action('pagelines_before_page', create_function('', 'echo pl_source_comment("Fixed NavBar Section");'));
         add_action('pagelines_before_page', array(&$this, 'passive_section_template'), 10, 2);
         pagelines_add_bodyclass('navbar_fixed');
     }
 }
 public function add_social_options()
 {
     $options = array('social_profiles' => array('title' => 'Social Profiles', 'type' => 'multi_option', 'selectvalues' => $this->get_options()));
     pl_add_options_page(array('name' => 'Social_Icons/Profiles', 'array' => $options));
 }