Exemple #1
0
 /**
  * Other settings for All View Type
  */
 static function settings_other()
 {
     $prefix = 'other-';
     $result = array(array('label' => array('text' => __('Open item in', PT_CV_TEXTDOMAIN)), 'params' => array(array('type' => 'radio', 'name' => $prefix . 'open-in', 'options' => PT_CV_Values::open_in(), 'std' => PT_CV_Functions::array_get_first_key(PT_CV_Values::open_in()), 'desc' => __('How to open an item when click on Title, Thumbnail, Read more button', PT_CV_TEXTDOMAIN)))));
     $result = apply_filters(PT_CV_PREFIX_ . 'settings_other', $result, $prefix);
     return $result;
 }