/usr/share/nginx/ext/platform/lib/inc/keke_rss_class.php[ 39 ]
34 $result="";
35 } elseif($this->syndicateHtml){
36 $result="<![CDATA[".$this->rawFieldContent."]]>";
37 }else{
38 if($this->truncSize and is_int($this->truncSize)){
39 $result=FeedCreator::iTrunc(htmlspecialchars($this->rawFieldContent),$this->truncSize);
40 }else{
41 $result=htmlspecialchars($this->rawFieldContent);
42 }
43 }
44 return $result;
-
/usr/share/nginx/ext/platform/index.php [ 142 ] » require ( arguments )
0
string(45) "/usr/share/nginx/ext/platform/control/rss.php"
137 $intService = db_factory::get_count("SELECT COUNT(*) as count2 FROM `".TABLEPRE."witkey_order` AS a LEFT JOIN ".TABLEPRE."witkey_order_detail AS b ON a.order_id = b.order_id LEFT JOIN ".TABLEPRE."witkey_service_order AS c ON b.order_id = c.order_id WHERE 1=1 and a.seller_uid = ".$gUid." and b.obj_type = 'service' and a.order_status ='seller_confirm' order by b.order_id desc"); 138 $intGy = db_factory::get_count("SELECT count(*) as count2 FROM `".TABLEPRE."witkey_service_order` as a LEFT JOIN ".TABLEPRE."witkey_order_detail as b ON a.order_id = b.order_id 139 LEFT JOIN ".TABLEPRE."witkey_order as c ON a.order_id = c.order_id 140 WHERE 1=1 and c.seller_uid= ".$gUid." and c.order_status!= 'close' and c.order_status ='seller_confirm' order by c.order_time desc"); 141 } 142 require 'control/' . $do . '.php'; 143 require $kekezu->_tpl_obj->template ( $do );
-
/usr/share/nginx/ext/platform/control/rss.php [ 31 ] » keke_rss_class->saveFeed ( arguments )
0
string(6) "RSS2.0"
1
string(14) "data/index.xml"
26 $objItem->title = $v ['title']; 27 $objItem->link = $v ['link']; 28 $objItem->description = $v ['description']; 29 $objRss->addItem ( $objItem ); 30 } 31 $objRss->saveFeed ( "RSS2.0", "data/index.xml" );
-
/usr/share/nginx/ext/platform/lib/inc/keke_rss_class.php [ 76 ] » FeedCreator->saveFeed ( arguments )
0
string(14) "data/index.xml"
1
bool(true)
71 $this->_setFormat($format); 72 return $this->_feed->createFeed(); 73 } 74 function saveFeed($format="RSS0.91",$filename="",$displayContents=true){ 75 $this->_setFormat($format); 76 $this->_feed->saveFeed($filename,$displayContents); 77 } 78 function useCached($format="RSS0.91",$filename="",$timeout=3600){ 79 $this->_setFormat($format); 80 $this->_feed->useCached($filename,$timeout); 81 }
-
/usr/share/nginx/ext/platform/lib/inc/keke_rss_class.php [ 163 ] » RSSCreator091->createFeed ( )
158 if($filename==""){ 159 $filename=$this->_generateFilename(); 160 } 161 $feedFile=fopen($filename,"w+"); 162 if($feedFile){ 163 fputs($feedFile,$this->createFeed()); 164 fclose($feedFile); 165 if($displayContents){ 166 $this->_redirect($filename); 167 } 168 }else{
-
/usr/share/nginx/ext/platform/lib/inc/keke_rss_class.php [ 313 ] » HtmlDescribable->getDescription ( )
308 $feed.= $this->_createStylesheetReferences(); 309 $feed.= "<rss version=\"".$this->RSSVersion."\">\n"; 310 $feed.= " <channel>\n"; 311 $feed.= " <title>".FeedCreator::iTrunc(htmlspecialchars($this->title),100)."</title>\n"; 312 $this->descriptionTruncSize=500; 313 $feed.= " <description>".$this->getDescription()."</description>\n"; 314 $feed.= " <link>".$this->link."</link>\n"; 315 $now=new FeedDate(); 316 $feed.= " <lastBuildDate>".htmlspecialchars($now->rfc822())."</lastBuildDate>\n"; 317 $feed.= " <generator>".FEEDCREATOR_VERSION."</generator>\n"; 318 if($this->image!=null){
-
/usr/share/nginx/ext/platform/lib/inc/keke_rss_class.php [ 21 ] » FeedHtmlField->output ( )
16 var $descriptionTruncSize; 17 function getDescription(){ 18 $descriptionField=new FeedHtmlField($this->description); 19 $descriptionField->syndicateHtml=$this->descriptionHtmlSyndicated; 20 $descriptionField->truncSize=$this->descriptionTruncSize; 21 return $descriptionField->output(); 22 } 23 } 24 class FeedHtmlField{ 25 var $rawFieldContent; 26 var $truncSize,$syndicateHtml;
-
/usr/share/nginx/ext/platform/lib/inc/keke_rss_class.php [ 39 ] » keke_core_class::error_handler ( arguments )
0
int(8192)
1
string(113) "Non-static method FeedCreator::iTrunc() should not be called statically, assuming $this from incompatible context"
2
string(56) "/usr/share/nginx/ext/platform/lib/inc/keke_rss_class.php"
3
int(39)
4
array(0) { }
34 $result=""; 35 } elseif($this->syndicateHtml){ 36 $result="<![CDATA[".$this->rawFieldContent."]]>"; 37 }else{ 38 if($this->truncSize and is_int($this->truncSize)){ 39 $result=FeedCreator::iTrunc(htmlspecialchars($this->rawFieldContent),$this->truncSize); 40 }else{ 41 $result=htmlspecialchars($this->rawFieldContent); 42 } 43 } 44 return $result;