function uploader_lister($d, $pd)
 {
     $this->urldir = $pd;
     $this->basepanelurl = BLOG_BASEURL . "admin.php?p=uploader&action=browse&dir=";
     $this->thumburl = BLOG_BASEURL . 'admin.php?p=uploader&action=thumb&f=';
     return parent::fs_filelister($d);
 }
示例#2
0
 function comment_indexer($id)
 {
     $f = bdb_idtofile($id, BDB_COMMENT);
     //todo change
     $this->_directory = $f;
     parent::fs_filelister();
     //substr(bdb_idtofile($id), -strlen(EXT));
 }
示例#3
0
 function plugin_indexer()
 {
     $this->_enabledlist = CONFIG_DIR . 'plugins.conf.php';
     parent::fs_filelister();
 }
示例#4
0
 function draft_indexer()
 {
     $this->_cachefile = CACHE_DIR . 'draft_index.php';
     return parent::fs_filelister();
 }
示例#5
0
 function admin_themes_obj_style_idx()
 {
     $this->_directory = THEMES_DIR . THE_THEME;
     parent::fs_filelister();
 }
示例#6
0
 function entry_archives($y, $m = null, $d = null)
 {
     $this->_y = $y;
     $this->_m = $m;
     $this->_d = $d;
     $this->_directory .= "{$y}/";
     if ($m) {
         $this->_directory .= "{$m}/";
         if ($d) {
             $this->_filter = "entry{$y}{$m}{$d}*";
         }
     }
     return parent::fs_filelister();
 }
示例#7
0
 function s_entry_crawler()
 {
     $this->index = entry_init();
     parent::fs_filelister();
 }
示例#8
0
 function fs_chmodder($directory, $ch_file = FILE_PERMISSIONS, $ch_dir = DIR_PERMISSIONS)
 {
     $this->_directory = $directory;
     $this->_chmod_file = $ch_file;
     $this->_chmod_dir = $ch_dir;
     parent::fs_filelister();
 }