public static function admin()
 {
     parent::admin();
     $list = array(1 => __('First page'));
     if (get_option('show_on_front') == 'page') {
         self::$option = array('front-page' => 'Posts Page');
         self::$question = 'Show widget on the posts page?';
     }
     self::mkGUI(self::$type, self::$option[self::$name], self::$question, NULL, self::$except, $list);
 }