Searched refs:pfile (Results 1 – 10 of 10) sorted by relevance
/plugin/dokumicrobugtracker/ |
H A D | edit.php | 57 $pfile = metaFN2(md5($project), '.bugs'); variable 58 if (@file_exists($pfile)) 59 {$bugs = unserialize(@file_get_contents($pfile));} 80 $fh = fopen($pfile, 'w');
|
H A D | syntax.php | 94 $pfile = metaFN2(md5($data['project']), '.bugs'); 95 if (@file_exists($pfile)) 96 {$bugs = unserialize(@file_get_contents($pfile));} 138 $fh = fopen($pfile, 'w');
|
/plugin/issuetracker/ |
H A D | itsearch.php | 56 …if($conf['plugin']['issuetracker']['it_data']==false) $pfile = DOKU_CONF."../data/meta/".$project.… variable 57 … else $pfile = DOKU_CONF."../". $conf['plugin']['issuetracker']['it_data'].$project.'.issues'; variable 58 if (@file_exists($pfile)) 59 { $issues = unserialize(@file_get_contents($pfile)); 66 msg(sprintf($this->getLang('msg_pfilemissing'), $pfile),-1); }
|
H A D | action.php | 283 if (is_file($pfile)) 354 if (@file_exists($pfile)) 579 if (@file_exists($pfile)) 681 if (@file_exists($pfile)) 3200 if ((@file_exists($pfile)) && (strlen($project)>1)) 3377 $pfile = $path.'/'.$file; 3379 if (@file_exists($pfile)) { 3438 else msg('File: '.$pfile.'does not exist',-1); 3738 else $pfile = $it_datastore.$project.'.issues'; 3740 if (@file_exists($pfile)) [all …]
|
H A D | edit.php | 365 …if($conf['plugin']['issuetracker']['it_data']==false) $pfile = DOKU_CONF."../data/meta/".$project.… variable 366 else $pfile = DOKU_CONF."../". $conf['plugin']['issuetracker']['it_data'].$project.'.issues'; variable 367 if (@file_exists($pfile)) 368 {$issues = unserialize(@file_get_contents($pfile));} 406 $fh = fopen($pfile, 'w');
|
H A D | syntax.php | 234 …if($this->getConf('it_data')==false) $pfile = DOKU_CONF."../data/meta/".$data['project'].'.issues'; 235 … else $pfile = DOKU_CONF."../". $this->getConf('it_data').$data['project'].'.issues'; 238 $xvalue = io_saveFile($pfile,serialize($issues)); 1959 if($this->getConf('it_data')==false) $pfile = $it_datastore.$data['project'].'.issues'; 1960 else $pfile = $it_datastore.$data['project'].'.issues'; 1962 if (@file_exists($pfile)) 1963 {$issues = unserialize(@file_get_contents($pfile));}
|
/plugin/poll/ |
H A D | syntax.php | 65 $pfile = metaFN(md5($title), '.poll'); 66 $poll = unserialize(@file_get_contents($pfile)); 97 $fh = fopen($pfile, 'w');
|
/plugin/multipoll/ |
H A D | syntax.php | 118 $pfile = metaFN(md5($title), '.multipoll'); 119 $poll = unserialize(@file_get_contents($pfile)); 155 if($fh = fopen($pfile, 'w')) {
|
/plugin/quiz/ |
H A D | class_quiz.php | 482 $pfile = metaFN(md5($this->quizID), '.quiz'); 483 $scorelist = unserialize(@file_get_contents($pfile)); 527 $pfile = metaFN(md5($this->quizID), '.quiz'); 528 $score = unserialize(@file_get_contents($pfile)); 552 if($fh = fopen($pfile, 'w')) {
|
/plugin/news/ |
H A D | admin.php | 222 $pfile =$this->helper->getMetaFN('pagedata', '.ser'); 223 $this->helper->_writeFile($pfile,$this->pagedata,true);
|