Example #1
0
 /**
  * @param array $data
  * @return bool
  */
 public function onLoad($data)
 {
     $returnValue = parent::onLoad($data);
     if ($data !== null) {
     }
     return $returnValue;
 }
Example #2
0
 /**
  * @param array $data
  * @return bool
  */
 public function onLoad($data)
 {
     $returnValue = parent::onLoad($data);
     if ($data !== null) {
         $this->getActions()->notice($data['nick'], 'New Command: !nick [name]');
     }
     return $returnValue;
 }
Example #3
0
 /**
  * @param array $data
  * @return bool
  */
 public function onLoad($data)
 {
     $returnValue = parent::onLoad($data);
     if ($data !== null) {
         $this->getActions()->notice($data['nick'], 'New Command: !cryptkey [#channel] [key]');
     }
     return $returnValue;
 }
Example #4
0
 /**
  * @param array $data
  * @return bool
  */
 public function onLoad($data)
 {
     $returnValue = parent::onLoad($data);
     $this->registerAuth($this);
     return $returnValue;
 }
Example #5
0
 /**
  * @param array $data
  * @return bool
  */
 public function onLoad($data)
 {
     $returnValue = parent::onLoad($data);
     return $returnValue;
 }