/** * @param array $data * @return bool */ public function onLoad($data) { $returnValue = parent::onLoad($data); if ($data !== null) { } return $returnValue; }
/** * @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; }
/** * @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; }
/** * @param array $data * @return bool */ public function onLoad($data) { $returnValue = parent::onLoad($data); $this->registerAuth($this); return $returnValue; }
/** * @param array $data * @return bool */ public function onLoad($data) { $returnValue = parent::onLoad($data); return $returnValue; }