Home
last modified time | relevance | path

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

/plugin/odt2dw/
Daction.php101 if ( ! isset( $this->logFileHandle ) ) $this->_msg( 'er_logFile' );
178 if ( ! $this->pageName = $ID ) return $this->_msg('er_id');
182 if ( auth_quickaclcheck($ID) < AUTH_EDIT ) return $this->_msg('er_acl_edit');
184 if ( auth_quickaclcheck($ID) < AUTH_CREATE ) return $this->_msg('er_acl_create');
188 if ( ! $this->_checkUploadFile() ) return $this->_msg('er_checkUploadResult');
191 if ( ! $this->getConf( 'parserXslFile' ) ) return $this->_msg('er_xslFile_notset');
193 if ( ! file_exists($this->xslFile) ) return $this->_msg('er_xslFile_exists');
194 if ( ! is_file($this->xslFile) ) return $this->_msg('er_xslFile_isfile');
197 if ( ! class_exists( XSLTProcessor ) ) return $this->_msg('er_class_xsltProcessor');
198 if ( ! class_exists( ZipArchive ) ) return $this->_msg('er_class_zipArchive');
[all …]
/plugin/odtplus2dw/
Daction.php118 if ( ! isset( $this->logFileHandle ) ) $this->_msg( 'er_logFile' );
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_xsltProcessor');
215 if ( ! class_exists( "ZipArchive" ) ) return $this->_msg('er_class_zipArchive');
[all …]
/plugin/file2dw/
Daction.php147 $this->_msg('er_logFile');
154 $this->_msg( array('ok_info','userFile found: '.$_FILES['userFile']['name']) );
189 if ( ! $this->pageName = $ID ) return $this->_msg('er_id');
193 if ( auth_quickaclcheck($ID) < AUTH_EDIT ) return $this->_msg('er_acl_edit');
195 if ( auth_quickaclcheck($ID) < AUTH_CREATE ) return $this->_msg('er_acl_create');
223 $this->_msg(array('ok_info','Executed command: '.$command));
230 return $this->_msg( array('er_pandoc',$message) );
233 $this->_msg(array('ok_info','pandoc conversion done'));
249 $this->_msg(array('ok_info','Start processing dir '.$this->dwimgDir));
260 return $this->_msg('er_img_dir');
[all …]
/plugin/mathpublish/
Dsyntax.php194 $this->_msg($this->getLang('nopng'), -1);
199 $this->_msg($this->getLang('noft'), -1);
212 protected function _msg($str, $lvl = 0) { function in syntax_plugin_mathpublish
/plugin/math2/
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/mathtran/
Dsyntax.php106 $this->_msg($this->msg_disable, -1);
120 function _msg($str, $lvl=0) { function in syntax_plugin_mathtran
/plugin/register/
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); }