コード例 #1
0
ファイル: search.php プロジェクト: slavam/adult-childhood
 /**
  * LazyestSearchFrontend::get_option()
  * Overrides options folders_page and thumbs_page
  * All results will be displayed on one page
  * 
  * @param mixed $option
  * @return
  */
 function get_option($option)
 {
     if ('folders_page' == $option) {
         return 0;
     }
     if ('thumbs_page' == $option) {
         return 0;
     }
     if ('enable_slide_show' == $option) {
         return 'FALSE';
     }
     return LazyestGallery::get_option($option);
 }