Home
last modified time | relevance | path

Searched refs:_msg (Results 1 – 7 of 7) sorted by relevance

/plugin/odt2dw/
H A Daction.php101 if ( ! isset( $this->logFileHandle ) ) $this->_msg( 'er_logFile' );
178 if ( ! $this->pageName = $ID ) return $this->_msg('er_id');
209 if ( ! $this->_set_xsltProcessor() ) return $this->_msg('er_xsltProc');
238 if ( ! $this->_apply_result() ) return $this->_msg('er_apply');
243 function _msg( $message, $type=null, $force=false ) { function in action_plugin_odt2dw
313 if ( ! $_FILES['odtFile'] ) return $this->_msg('er_odtFile_miss');
367 $this->_msg( array( 'ok_infoPlugin', $param ), 1 );
399 $this->_msg( 'inf_acl_upload', 0, true );
440 $this->_msg( array( 'er_img_'.$value, $key ) );
452 if ( ! $this->ZIP ) return $this->_msg('er_unzip_object');
[all …]
/plugin/odtplus2dw/
H A Daction.php118 if ( ! isset( $this->logFileHandle ) ) $this->_msg( 'er_logFile' );
148 # * false -> something wrong; using _msg to display what's wrong
195 if ( ! $this->pageName = $ID ) return $this->_msg('er_id');
199 if ( auth_quickaclcheck($ID) < AUTH_EDIT ) return $this->_msg('er_acl_edit');
201 if ( auth_quickaclcheck($ID) < AUTH_CREATE ) return $this->_msg('er_acl_create');
205 if ( ! $this->_checkUploadFile() ) return $this->_msg('er_checkUploadResult');
208 if ( ! $this->getConf( 'parserXslFile' ) ) return $this->_msg('er_xslFile_notset');
210 if ( ! file_exists($this->xslFile) ) return $this->_msg('er_xslFile_exists');
211 if ( ! is_file($this->xslFile) ) return $this->_msg('er_xslFile_isfile');
214 if ( ! class_exists( "XSLTProcessor" ) ) return $this->_msg('er_class_xsltProcesso
260 function _msg( $message, $type=null, $force=false ) { global() function in action_plugin_odtplus2dw
[all...]
/plugin/file2dw/
H A Daction.php147 $this->_msg('er_logFile');
230 return $this->_msg( array('er_pandoc',$message) );
233 $this->_msg(array('ok_info','pandoc conversion done'));
260 return $this->_msg('er_img_dir');
271 return $this->_msg( array( 'er_apply_file' ) );
275 return $this->_msg('er_acl_upload');
362 return $this->_msg('er_acl_upload');
393 return $this->_msg( array('er_soffice',$message) );
431 return $this->_msg('er_file_tmpDir');
439 return $this->_msg('er_file_getFromDownload');
[all …]
/plugin/math2/
H A Dsyntax.php153 $this->_msg("math plugin img folder is not writable", -1);
156 $this->_msg($this->msg_disable, -1);
200 function _msg($str, $lvl=0) { function in syntax_plugin_math
/plugin/mathpublish/
H A Dsyntax.php197 $this->_msg($this->getLang('nopng'), -1);
202 $this->_msg($this->getLang('noft'), -1);
215 protected function _msg($str, $lvl = 0) { function in syntax_plugin_mathpublish
/plugin/mathtran/
H A Dsyntax.php106 $this->_msg($this->msg_disable, -1);
120 function _msg($str, $lvl=0) { function in syntax_plugin_mathtran
/plugin/register/
H A Dsyntax.php52 private function _msg(&$renderer, $type, $msg) function in syntax_plugin_register
58 private function err(&$renderer, $msg) { $this->_msg($renderer, "error", $msg); }
59 private function dbg(&$renderer, $msg) { if ($this->debug) $this->_msg($renderer, "debug", $msg); }