コード例 #1
0
 function widget($args, $instance)
 {
     wpfb_loadclass('File', 'Category', 'Output');
     extract($args);
     $title = apply_filters('widget_title', $instance['title']);
     echo $before_widget, $before_title . (empty($title) ? __('Files', WPFB) : $title) . $after_title;
     // special handling for empty cats
     if (!empty($instance['cat']) && !is_null($cat = WPFB_Category::GetCat($instance['cat'])) && $cat->cat_num_files == 0) {
         $instance['cat'] = array();
         foreach ($cat->GetChildCats() as $c) {
             $instance['cat'][] = $c->cat_id;
         }
     }
     $files = WPFB_File::GetFiles2(empty($instance['cat']) ? null : WPFB_File::GetSqlCatWhereStr($instance['cat']), WPFB_Core::$settings->hide_inaccessible, array($instance['sort-by'] => $instance['sort-asc'] ? 'ASC' : 'DESC'), (int) $instance['limit']);
     //$instance['tpl_parsed']
     //WPFB_FileListWidget
     $tpl_func = WPFB_Core::CreateTplFunc($instance['tpl_parsed']);
     echo '<ul>';
     foreach ($files as $file) {
         echo '<li>', $tpl_func($file), '</li>';
     }
     echo '</ul>';
     echo $after_widget;
 }
コード例 #2
0
 function GenTpl2($tpl_tag = null, $load_js = true)
 {
     static $tpl_funcs = array('file' => array(), 'cat' => array());
     if (empty($tpl_tag)) {
         $tpl_tag = 'default';
     }
     if ($load_js) {
         WPFB_Core::$load_js = true;
     }
     $type = $this->is_file ? 'file' : 'cat';
     if (empty($tpl_funcs[$type][$tpl_tag])) {
         $parsed_tpl = WPFB_Core::GetParsedTpl($this->is_file ? 'file' : 'cat', $tpl_tag);
         if (empty($parsed_tpl)) {
             return "Template {$type} :: {$tpl_tag} does not exist!";
         }
         $tpl_funcs[$type][$tpl_tag] = WPFB_Core::CreateTplFunc($parsed_tpl);
     }
     self::$tpl_uid = defined('DOING_AJAX') && DOING_AJAX ? $this->GetId() . '' . round(microtime() * 1000) % 1000 : self::$tpl_uid + 1;
     return $tpl_funcs[$type][$tpl_tag]($this);
 }
コード例 #3
0
ファイル: Item.php プロジェクト: Seravo/WP-Filebase
 function GenTpl2($tpl_tag = null, $load_js = true)
 {
     static $tpl_funcs = array('file' => array(), 'cat' => array());
     if (empty($tpl_tag)) {
         $tpl_tag = 'default';
     }
     if ($load_js) {
         WPFB_Core::$load_js = true;
     }
     $type = $this->is_file ? 'file' : 'cat';
     if (empty($tpl_funcs[$type][$tpl_tag])) {
         $parsed_tpl = WPFB_Core::GetParsedTpl($this->is_file ? 'file' : 'cat', $tpl_tag);
         if (empty($parsed_tpl)) {
             return "Template {$type} :: {$tpl_tag} does not exist!";
         }
         $tpl_funcs[$type][$tpl_tag] = WPFB_Core::CreateTplFunc($parsed_tpl);
     }
     self::$tpl_uid++;
     return $tpl_funcs[$type][$tpl_tag]($this);
 }