Home
last modified time | relevance | path

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

1234

/plugin/quiz/
H A Dclass_quiz.php552 if($fh = fopen($pfile, 'w')) {
553 fwrite($fh, serialize($score));
554 fclose($fh);
/plugin/multipoll/
H A Dsyntax.php155 if($fh = fopen($pfile, 'w')) {
156 fwrite($fh, serialize($poll));
157 fclose($fh);
/plugin/givemeyouremail/
H A Dsyntax.php134 $fh = fopen($dfile, 'w');
135 fwrite($fh, serialize($givemeyouremail));
136 fclose($fh);
/plugin/register/
H A Dregister.php180 $fh = $this->font_height($fontidx, $height_text, $angle);
183 $this->enlarge($x + $fw, $y + $fh * 1.5);
186 $y + $fh, $this->black, $this->font_path($fontidx), $text);
431 $fh = $im->font_height(FONT_LABELS) / 2;
432 $im->text($cx2+$fw, $cy2-$fh, FONT_LABELS, $text);
442 $im->text($cx2+$fw, $cy2+$fh, FONT_DESC, $t);
443 $fh += $im->font_height(FONT_DESC);
445 $yoff += $fh;
/plugin/vote/
H A Dsyntax.php158 $fh = fopen( $vote_log_file, 'w' );
159 fwrite( $fh, serialize( $vote_skelton ) );
160 fclose( $fh );
170 $fh = fopen( $file, 'a' );
171 fwrite( $fh, $data );
172 fclose( $fh );
195 $fh = fopen( $vote_log_file, 'w' );
196 fwrite( $fh, serialize( $vote_log ) );
197 fclose( $fh);
/plugin/svg/
H A Dsyntax.php155 $fh = fopen( SYNTAX_PLUGIN_SVG_MEDIADIR . 'media/' . $filename, 'w' );
156 fwrite( $fh, $this->xml_data );
157 fclose( $fh );
H A Dsyntax.php.save155 $fh = fopen( SYNTAX_PLUGIN_SVG_MEDIADIR . 'media/' . $filename, 'w' );
156 fwrite( $fh, $this->xml_data );
157 fclose( $fh );
H A Dinstall.php57 $fh = fopen( SYNTAX_PLUGIN_SVG_MEDIADIR . '.install.php', 'w' );
58 fwrite( $fh, '<?php define("SYNTAX_PLUGIN_SVG_INSTALLED",true); ?>' );
59 fclose( $fh );
61 $fh = fopen( SYNTAX_PLUGIN_SVG_MEDIADIR . 'media/.htaccess', 'w' );
62 fwrite( $fh, "order allow,deny\nallow from all\n" );
63 fclose( $fh );
/plugin/wysiwyg/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/
H A Dspellchecker.php82 if( $fh = fopen( $tempfile, 'w' )) {
86 fwrite ( $fh, "%\n" ); # exit terse mode
87 fwrite ( $fh, "^$input_separator\n" );
88 fwrite ( $fh, "!\n" ); # enter terse mode
91 fwrite( $fh, "^$value\n" );
94 fclose( $fh );
H A Dspellchecker.pl54 my( $fh, $tmpfilename ) = tempfile( DIR => $dir );
62 print $fh "\%\n"; # exit terse mode
63 print $fh "^$input_separator\n";
64 print $fh "!\n"; # enter terse mode
67 print $fh "^$line\n";
/plugin/bibtex/OSBib/format/
H A DBIBFORMAT.php106 if(!$fh = fopen($styleFile, "r"))
110 list($info, $citation, $common, $types) = $parseXML->extractEntries($fh);
111 fclose($fh);
/plugin/bibtex/OSBib/
H A DPARSEXML.php41 function extractEntries($fh)
44 while(!feof($fh))
46 if(preg_match_all("/<style.*>(.*)<\/style>/Ui", trim(fgets($fh)), $startEntry))
H A DLOADSTYLE.php45 if($fh = fopen($stylesDir . '/' . $dir . "/" . $fileName, "r"))
47 preg_match("/<description>(.*)<\\/description>/i", fgets($fh), $matches);
50 fclose($fh);
/plugin/txtconf/
H A Dconfig0.class.php95 if (!$fh = @fopen($file, 'wb')) {
110 @fwrite($fh, $out);
111 fclose($fh);
/plugin/bibtex/OSBib/create/
H A DADMINSTYLE.php135 if($fh = fopen(OSBIB_STYLE_DIR . "/" . $dir . "/" . $fileName, "r"))
137 list($info, $citation, $common, $types) = $parseXML->extractEntries($fh);

1234