Home
last modified time | relevance | path

Searched refs:fh (Results 51 – 75 of 90) sorted by last modified time

1234

/plugin/fckg/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/
H A Dspellchecker.php86 if( $fh = fopen( $tempfile, 'w' )) {
94 fwrite ( $fh, "%\n" ); # exit terse mode
95 fwrite ( $fh, "^$input_separator\n" );
96 fwrite ( $fh, "!\n" ); # enter terse mode
99 fwrite( $fh, "^$value\n" );
102 fclose( $fh );
H A Dspellchecker.pl54 my( $fh, $tmpfilename ) = tempfile( DIR => $dir );
64 print $fh "\%\n"; # exit terse mode
65 print $fh "^$input_separator\n";
66 print $fh "!\n"; # enter terse mode
69 print $fh "^$line\n";
/plugin/issuetracker/
H A Dedit.php339 $fh = fopen($modfile, 'w');
340 fwrite($fh, serialize($mods));
341 fclose($fh);
406 $fh = fopen($pfile, 'w'); variable
407 fwrite($fh, serialize($issues));
408 fclose($fh);
H A Dsyntax.php1716 $fh = fopen($modfile, 'w');
1717 fwrite($fh, serialize($mods));
1718 fclose($fh);
H A Daction.php3261 $fh = fopen($modfile, 'w');
3262 fwrite($fh, serialize($mods));
3263 fclose($fh);
/plugin/toolbox/
H A Dextension.php13 $fh = fopen(__DIR__ . '/extension/script.js', 'w'); variable
16 fwrite($fh, "/**
30 fwrite($fh, 'var toolbox_lang = ' . json_encode($lang['js']) . ";\n");
33 …fwrite($fh, "var toolbox_icon = '//github.com/splitbrain/dokuwiki-plugin-toolbox/raw/master/pix/';…
39 fwrite($fh, file_get_contents($script));
43 fwrite($fh, "var tb = document.getElementById('toolbox__picker');");
44 fwrite($fh, "if(!tb) initToolbar('tool__bar','wiki__text',toolbar);");
47 fclose($fh);
/plugin/nsexport/packer/
H A Dpacker.php79 $fh = @fopen($filename, 'rb');
80 while (!feof($fh)) {
81 echo fread($fh, 1024);
83 fclose($fh);
/plugin/nsexport/packer/ziphtml/
H A Dpacker.php140 $fh = @opendir("$base/$dir");
141 if(!$fh) return;
142 while(false !== ($file = readdir($fh))) {
151 closedir($fh);
H A Dzip.php36 $fh = @opendir("$base/$dir");
37 if(!$fh) return;
38 while(false !== ($file = readdir($fh))) {
47 closedir($fh);
/plugin/scrape/
H A DHTMLPurifier.standalone.php
/plugin/removeold/
H A Dadmin.php247 $fh = fopen($log_file, 'a+');
248 if (!fwrite($fh, $record)) {
251 fclose($fh);
/plugin/freechat/phpfreechat/src/containers/
H A Dfile.class.php210 $fh = fopen($leaffilename, 'r+');
213 if (flock($fh, LOCK_EX))
215 $leafvalue = chop(fread($fh, filesize($leaffilename)));
217 rewind($fh);
218 fwrite($fh, $leafvalue);
219 fflush($fh);
220 ftruncate($fh, ftell($fh));
221 flock($fh, LOCK_UN);
228 fclose($fh);
/plugin/freechat/phpfreechat/src/
H A Dpfctools.php300 if (!flock($fh, LOCK_SH)) {
306 $data = fread($fh, $fsize);
309 while (!feof($fh)) {
310 $data .= fread($fh, 8192);
314 fclose($fh);
334 $data = fread($fh, $fsize);
338 while (!feof($fh)) {
339 $data .= fread($fh, 8192);
342 fclose($fh);
407 if (!flock($fh, LOCK_EX)) {
[all …]
/plugin/poll/
H A Dsyntax.php97 $fh = fopen($pfile, 'w');
98 fwrite($fh, serialize($poll));
99 fclose($fh);
/plugin/html2pdf/html2pdf/html2ps/
H A Dpdf.fpdf.php1049 var $fw,$fh; //dimensions of page format in user unit variable in FPDF
1693 $this->fh = $height;
1695 $this->h = $this->fh;
/plugin/html2pdf/html2pdf/html2ps/fpdf/
H A Dfpdf.php955 var $fw,$fh; //dimensions of page format in user unit variable in FPDF
1604 $this->fh=$this->fhPt/$this->k;
3010 $this->h=$this->fh;
3016 $this->w=$this->fh;
/plugin/dokumicrobugtracker/
H A Dedit.php80 $fh = fopen($pfile, 'w'); variable
81 fwrite($fh, serialize($bugs));
82 fclose($fh);
H A Dsyntax.php138 $fh = fopen($pfile, 'w');
139 fwrite($fh, serialize($bugs));
140 fclose($fh);
/plugin/maintenance/
H A Dhelper.php54 $fh = fopen($lockfile, 'wb');
55 if (flock($fh, LOCK_EX | LOCK_NB)) {
116 $fh = fopen($lockfile, 'wb');
117 if (flock($fh, LOCK_EX | LOCK_NB)) {
118 @flock($fh, LOCK_UN);
/plugin/simplechat/
H A Dajax.php47 fclose($fh );
59 if( $fh ) {
60 while(!feof($fh)){
61 $line = fgets($fh);
65 fclose($fh);
75 $fh = fopen($filename,'a+'); variable
76 fwrite( $fh , $newmsgline );
77 fclose($fh );
81 $fh = fopen($filename,'a+'); variable
82 fwrite( $fh , $newmsgline );
[all …]
H A Dsyntax.php99 $fh = @fopen( $filename, "r" );
100 if( $fh ) {
101 while(!feof($fh)){
102 $line = fgets($fh);
108 fclose($fh);
/plugin/supa/helper/
H A Dhelper.php44 $fh = fopen( $filename, 'r' );
45 $data = fread( $fh, filesize( $filename ) );
46 fclose( $fh );
55 $fh = fopen( $filename, "w" );
56 fwrite( $fh, $decoded );
57 fclose( $fh );
/plugin/autolink2/
H A Dhelper.php231 $fh = fopen($this->idx_dir.'/'.$idx.'.idx', 'w');
232 if (!$fh) return false;
234 fwrite($fh, join('', $this->page_idx));
241 fwrite($fh, join('', $autolink_index));
243 fclose($fh);
/plugin/s5reloaded/ui/thesis/
H A Dslides.js1694 function strokeString(ctx, txt, col, fh, tx, ty) { argument
1695 var fw = fh*0.666666; var lw = fh*0.125;
1700 strokeSymbol(ctx, txt[i], ls, tx+xp, ty, fw, fh);
/plugin/translator/
H A Dhelper.php1252 $fh = fopen($file, 'w');
1253 if ( !$fh ) {
1259 fwrite( $fh, $hash['date']);
1260 fclose($fh);

1234