public static function default_meta()
 {
     return array('title' => sprintf(__('%1$s Page Layout', AT_ADMIN_TEXTDOMAIN), THEME_NAME), 'id' => 'at_side_meta_box', 'pages' => array('page', 'post', 'news', 'reviews'), 'callback' => '', 'context' => 'side', 'priority' => 'default', 'fields' => array('_layout' => array('type' => 'radio_image', 'title' => __('Layout', AT_ADMIN_TEXTDOMAIN), 'description' => __('You can choose between a left, right, or no sidebar layout for your page.', AT_ADMIN_TEXTDOMAIN), 'items' => array('content' => AT_URI . '/assets/images/admin/layouts/page/1.png', 'left_content' => AT_URI . '/assets/images/admin/layouts/page/2.png', 'content_right' => AT_URI . '/assets/images/admin/layouts/page/3.png'), 'default' => 'left_content'), '_page_tagline' => array('type' => 'input_text', 'title' => __('Page Tagline', AT_ADMIN_TEXTDOMAIN), 'description' => __('Alternative page title.', AT_ADMIN_TEXTDOMAIN), 'default' => ''), '_disable_page_title' => array('type' => 'checkbox', 'title' => __('Disable Page H1 title', AT_ADMIN_TEXTDOMAIN), 'description' => __('Check this option to disable page H1 title on this page', AT_ADMIN_TEXTDOMAIN), 'default' => false), '_disable_breadcrumbs' => array('type' => 'checkbox', 'title' => __('Disable Breadcrumbs', AT_ADMIN_TEXTDOMAIN), 'description' => __('Check this option to disable breadcrumbs on this page', AT_ADMIN_TEXTDOMAIN), 'default' => false), '_custom_sidebar' => array('type' => 'select', 'title' => __('Custom Sidebar', AT_ADMIN_TEXTDOMAIN), 'description' => __("Select the custom sidebar that you'd like to be displayed on this page.<br /><br />Note:  You will need to first create a custom sidebar under the &quot;Sidebar&quot; tab in your theme's option panel before it will show up here.", AT_ADMIN_TEXTDOMAIN), 'items' => AT_Sidebars::get_custom_sidebars(), 'default' => '')));
 }
 public function reviews()
 {
     $fields = array('reviews_title' => array('type' => 'input_text', 'title' => __('Reviews Title', AT_ADMIN_TEXTDOMAIN), 'description' => '', 'default' => 'Reviews'), 'reviews_layout' => array('type' => 'radio_image', 'title' => __('Layout', AT_ADMIN_TEXTDOMAIN), 'description' => __('You can choose between a left, right, or no sidebar layout for your reviews page.', AT_ADMIN_TEXTDOMAIN), 'items' => array('content' => AT_URI . '/assets/images/admin/layouts/page/1.png', 'left_content' => AT_URI . '/assets/images/admin/layouts/page/2.png', 'content_right' => AT_URI . '/assets/images/admin/layouts/page/3.png'), 'default' => 'left_content'), 'reviews_custom_sidebar' => array('type' => 'select', 'title' => __('Custom Sidebar', AT_ADMIN_TEXTDOMAIN), 'description' => __("Select the custom sidebar that you'd like to be displayed on this page.<br /><br />Note:  You will need to first create a custom sidebar under the &quot;Sidebar&quot; tab in your theme's option panel before it will show up here.", AT_ADMIN_TEXTDOMAIN), 'items' => AT_Sidebars::get_custom_sidebars(), 'default' => ''));
     if (!$this->_get_params) {
         $this->view->add_block('content', 'admin/theme_options/content', array('title' => __('Reviews options', AT_ADMIN_TEXTDOMAIN), 'alias' => 'reviews'));
     }
     return $fields;
 }