Lines Matching refs:_info_row
43 $this->_info_row('Plugin info','Value',' ',true);
45 $this->_info_row('Plugin version',$info['date']);
46 $this->_info_row('Author',$info['author']);
47 $this->_info_row('Server parameters','Value','Status',true);
48 $this->_info_row('Plugin folder',__DIR__);
50 $this->_info_row('Current PHP version',phpversion(),$ok);
51 $this->_info_row('Running webserver',htmlentities($_SERVER['SERVER_SOFTWARE']));
52 $this->_info_row('PHP memory limit',ini_get('memory_limit'));
54 $this->_info_row('EXIF extension',($ok ? '' : 'not').' loaded',$ok);
56 $this->_info_row('CURL extension',($ok ? '' : 'not').' loaded',$ok);
58 $this->_info_row('IMAGICK extension',($ok ? '' : 'not').' loaded',$ok);
60 $this->_info_row('ZIP extension',($ok ? '' : 'not').' loaded',$ok);
62 $this->_info_row('GD extension',($ok ? '' : 'not').' loaded',$ok);
66 $this->_info_row('|-- '.$key,$value);
69 $this->_info_row('phpThumb requirements','Value','Status',true);
80 $this->_info_row('Important disabled functions',$info,$ok);
83 $this->_info_row('pgImg.php execute permissions',sprintf('%o',$info),$ok);
88 function _info_row($item, $value, $state = null, $header = false){ function in admin_plugin_photogallery