Lines Matching refs:this

49 …$this->Lexer->addSpecialPattern('----+ *photogallery(?: [ a-zA-Z0-9_]*)?-+\n.*?\n?----+', $mode, '…
80 $data['phpthumb'] = $this->getConf('use_phpThumb');
81 $data['autoplay'] = $this->getConf('autoplay');
82 $data['pw'] = $this->getConf('poster_width');
83 $data['ph'] = $this->getConf('poster_height');
84 $data['tw'] = $this->getConf('thumbnail_width');
85 $data['th'] = $this->getConf('thumbnail_height');
86 $data['iw'] = $this->getConf('viewport_width');
87 $data['ih'] = $this->getConf('viewport_height');
88 $data['vprot'] = $this->getConf('viewport_rotate');
89 $data['panar'] = $this->getConf('panorama_ratio');
90 $data['panw'] = $this->getConf('panorama_width');
91 $data['panh'] = $this->getConf('panorama_height');
92 $data['posteralign'] = $this->getConf('posteralign');
94 $data['fullsize'] = $this->getConf('fullsize');
95 $data['sort'] = $this->getConf('sort');
99 $this->_setConfOptions($data,$this->getConf('options'));
102 $params = $this->getConf('options');
142 if (!$this->_phpThumbCheck()){
143 msg($this->getLang('phpthumbdisabled'),2);
228 $this->metaAliases = $this->getMetaTagAliases();
233 if($this->_auth_check($data)){
235 $this->_photo_gallery($data, $R); // Start gallery
238 msg(sprintf($this->getLang('notauthorized'),$data['ns']),-1);
244 $files = $this->_findimages($data);
254 msg($this->getLang('phpthumbexecerror'),-1);
256 msg($this->getLang('phpthumbexecpermset'),1);
260 msg($this->getLang('phpthumbpermseterror'),-1);
279 if(($cmd == 'show') and (!$this->_media_folder_exists($data['ns']))){
280 … $R->doc .= '<div class="nothing">'.sprintf($this->getLang('nsnotexists'),$data['ns']).'</div>';
283 … $R->doc .= '<div class="nothing">'.sprintf($this->getLang('pgnotexists'),$data['pg']).'</div>';
288 $files = $this->_findimages($data);
300 $this->_createzipfile($files, mediaFN($zip));
301 if($this->_zip_auth_check($data)){
302 …$data['ziplink'] = $R->internalmedia($zip,$this->getLang('lnk_download'),null,null,null,null,'link…
306 msg($this->getLang('zipdisabled'),2);
313 $this->_description($files,$data,$R);
314 $this->_poster($files,$data,$R);
317 $this->_poster($files,$data,$R);
318 $this->_description($files,$data,$R);
335 $files = $this->_loadRSS($data['ns']);
388 usort($files,array($this,'_datesort'));
390 usort($files,array($this,'_modsort'));
392 usort($files,array($this,'_titlesort'));
497 $da = $this->_meta($a,'cdate');
498 $db = $this->_meta($b,'cdate');
508 $ta = $this->_meta($a,'title');
509 $tb = $this->_meta($b,'title');
527 $ret .= $this->_image($img,$data,$i);
573 $i['alt'] = $this->_meta($img,'title');
585 $R->doc .= $this->_lightgallery($files,$data,$pgid);
623 $this->_addString($info,$imgcnt,sprintf($this->getLang('imagescnt'),$imgcnt));
624 $this->_addString($info,$vidcnt,sprintf($this->getLang('videoscnt'),$vidcnt),', ');
656 $mw = (int) $this->_meta($img,'width');
657 $mh = (int) $this->_meta($img,'height');
667 $mw = (int) $this->_meta($img,'width');
668 $mh = (int) $this->_meta($img,'height');
707 $ratio = $this->_fill_ratio($mw,$mh,$vpw,$vph);
716 $ratio = $this->_fit_ratio($mw,$mh,$vpw,$vph);
748 $ta['alt'] = $this->_caption($img,$data);
781 return $img['meta']->getField($this->metaAliases['img_title']);
783 return $img['meta']->getField($this->metaAliases['img_caption']);
785 return $img['meta']->getField($this->metaAliases['img_keywords']);
787 return $img['meta']->getField($this->metaAliases['img_date']);
789 return $img['meta']->getField($this->metaAliases['img_width']);
791 return $img['meta']->getField($this->metaAliases['img_height']);
876 $title = $this->_meta($img,'title');
882 $desc = $this->_meta($img,'desc');
888 $keywords = $this->_meta($img,'keywords');
894 $ret .= $this->_exif($img);
927 $this->_addString($ret,$make.$model,$make.' '.$model, ' - ');
928 $this->_addString($ret,$shutter,$shutter.'s',', ');
929 $this->_addString($ret,$fnumber,'f/'.$fnumber,', ');
930 $this->_addString($ret,$iso,'ISO '.$iso,', ');
931 $this->_addString($ret,$ret,null,null,'<p>','</p>');