Exemple #1
0
 public function blotter()
 {
     if (kxEnv::Get('kx:extras:blotter')) {
         $dwoo_data['blotter'] = kxFunc::getBlotter();
         $dwoo_data['blotter_updated'] = kxFunc::getBlotterLastUpdated();
         return $dwoo_data;
     }
     return array();
 }
Exemple #2
0
 /**
  * Generate the postbox area
  *
  * @param integer $replythread The ID of the thread being replied to.  0 if not replying
  * @param string $postboxnotice The postbox notice
  * @return string The generated postbox
  */
 public function postBox($replythread = 0)
 {
     if (kxEnv::Get('kx:extras:blotter')) {
         $this->twigData['blotter'] = kxFunc::getBlotter();
         $this->twigData['blotter_updated'] = kxFunc::getBlotterLastUpdated();
     }
 }