コード例 #1
0
ファイル: Event.php プロジェクト: maniaplanet/manialive-lib
 function __construct($onWhat)
 {
     parent::__construct($onWhat);
     $params = func_get_args();
     array_shift($params);
     $this->params = $params;
 }
コード例 #2
0
 function __construct($onWhat, $content)
 {
     parent::__construct($onWhat);
     $this->content = $content;
 }
コード例 #3
0
 function __construct($login)
 {
     parent::__construct(static::ON_ALLIES_CHANGED);
     $this->login = $login;
 }
コード例 #4
0
ファイル: Event.php プロジェクト: ketsuekiro/manialive
 function __construct($onWhat, $threadId)
 {
     parent::__construct($onWhat);
     $this->threadId = $threadId;
 }
コード例 #5
0
ファイル: Event.php プロジェクト: ketsuekiro/manialive
 function __construct($method, $params = array())
 {
     parent::__construct(self::getOnWhat($method));
     $this->params = $params;
 }
コード例 #6
0
ファイル: Event.php プロジェクト: maniaplanet/manialive-lib
 function __construct($onWhat = self::ON_TICK)
 {
     parent::__construct($onWhat);
 }
コード例 #7
0
ファイル: Event.php プロジェクト: maniaplanet/manialive-lib
 function __construct($onWhat, $pluginId)
 {
     parent::__construct($onWhat);
     $this->pluginId = $pluginId;
 }
コード例 #8
0
 function __construct($onWhat, $newValue)
 {
     parent::__construct($onWhat);
     $this->newValue = $newValue;
 }