Ejemplo n.º 1
0
 public function __construct($sender, $model, $objectParameter)
 {
     parent::__construct($sender);
     $this->visualElement = null;
     $this->model = $model;
     $this->objectParameter = $objectParameter;
 }
Ejemplo n.º 2
0
 public function __construct($sender, $idObject, $where, $params = array())
 {
     parent::__construct($sender);
     $this->idObject = $idObject;
     $this->where = $where;
     $this->params = $params;
 }
Ejemplo n.º 3
0
 public function __construct($sender, $model, $objectParameter, $status = ViewController::ENTITY_STATUS_AVAILABLE)
 {
     parent::__construct($sender);
     $this->model = $model;
     $this->objectParameter = $objectParameter;
     $this->status = $status;
 }
Ejemplo n.º 4
0
 /**
  * Constructor.
  * @param mixed $sender sender of the event
  * @param string $code error code
  * @param string $message error message
  * @param string $file error file
  * @param integer $line error line
  */
 public function __construct($sender, $code, $message, $file, $line)
 {
     $this->code = $code;
     $this->message = $message;
     $this->file = $file;
     $this->line = $line;
     parent::__construct($sender);
 }
Ejemplo n.º 5
0
 /**
  * Constructor
  * @param mixed|null $sender sender of the event
  * @param mixed|null $onAction
  * @param $blbImage
  * @param $objProduct
  * @param int $intSequence
  */
 public function __construct($sender, $onAction, $blbImage, $objProduct, $intSequence = 0)
 {
     $this->onAction = $onAction;
     $this->blbImage = $blbImage;
     $this->objProduct = $objProduct;
     $this->intSequence = $intSequence;
     parent::__construct($sender);
 }
Ejemplo n.º 6
0
 public function __construct($sender, $message, $type, $sticked, $time)
 {
     parent::__construct($sender);
     $this->message = $message;
     $this->type = $type;
     $this->sticked = $sticked;
     $this->time = $time;
 }
Ejemplo n.º 7
0
 public function __construct($sender, $idObject, $create = true)
 {
     parent::__construct($sender);
     $this->idObject = $idObject;
     $this->create = $create;
 }
Ejemplo n.º 8
0
 public function __construct($sender, $idView, $grid)
 {
     parent::__construct($sender);
     $this->idObjectView = $idView;
     $this->grid = $grid;
 }
Ejemplo n.º 9
0
 /**
  * Constructor.
  * @param WidgetFactory $sender The WidgetFactory instance
  * @param CBaseController $owner The owner of the new widget
  * @param string $className The class name of the widget. This can also be a path alias.
  * @param array $params The initial property values (name=>value) of the widget.
  */
 public function __construct(WidgetFactory $sender, CBaseController $owner, $className, array $params = array())
 {
     parent::__construct($sender, $params);
     $this->owner = $owner;
     $this->className = $className;
 }
Ejemplo n.º 10
0
 /**
  * Constructor.
  * @param mixed $sender sender of this event
  * @param string $category the category that the message belongs to
  * @param string $message the message to be translated
  * @param string $language the ID of the language that the message is to be translated to
  */
 public function __construct($sender, $category, $message, $language)
 {
     parent::__construct($sender);
     $this->message = $message;
     $this->category = $category;
     $this->language = $language;
 }
Ejemplo n.º 11
0
 /**
  * Constructor.
  * @param mixed $sender sender of the event
  * @param string $params the parameters to be passed to the action method.
  * @param string $action the action name
  * @param integer $exitCode the application exit code
  */
 public function __construct($sender = null, $params = null, $action = null, $exitCode = 0)
 {
     parent::__construct($sender, $params);
     $this->action = $action;
     $this->exitCode = $exitCode;
 }
Ejemplo n.º 12
0
 /**
  * Конструктор
  * @param mixed $sender объект, вызвавший событие
  * @param string $params параметры, передаваемые в метод действия
  * @param string $action имя действия
  */
 public function __construct($sender = null, $params = null, $action = null)
 {
     parent::__construct($sender, $params);
     $this->action = $action;
 }
Ejemplo n.º 13
0
 public function __construct($sender, $model)
 {
     parent::__construct($sender);
     $this->model = $model;
 }
 public function __construct($sender, $step = null, $data = null)
 {
     parent::__construct($sender);
     $this->step = $step;
     $this->data = $data;
 }
Ejemplo n.º 15
0
 /**
  * Constructor.
  * @param mixed $sender sender of the event
  * @param mixed $blbImage error code
  * @param Product $objProduct error message
  */
 public function __construct($sender, $onAction, $objProduct)
 {
     $this->onAction = $onAction;
     $this->objProduct = $objProduct;
     parent::__construct($sender);
 }
Ejemplo n.º 16
0
 public function __construct($sender, $type, $position)
 {
     $this->type = $type;
     $this->position = $position;
     parent::__construct($sender);
 }
Ejemplo n.º 17
0
 /**
  * @param mixed|null $sender
  * @param mixed|null $onAction
  * @param null $order_id
  */
 public function __construct($sender, $onAction, $order_id = null)
 {
     $this->onAction = $onAction;
     $this->order_id = $order_id;
     parent::__construct($sender);
 }
Ejemplo n.º 18
0
 /**
  * Constructor.
  * @param mixed $sender sender of the event
  * @param string $output the output to be processed
  */
 public function __construct($sender, $output)
 {
     parent::__construct($sender);
     $this->output = $output;
 }
Ejemplo n.º 19
0
 /**
  * Constructor.
  * @param mixed $sender sender of the event
  * @param customer $objCustomer error message
  */
 public function __construct($sender, $onAction, $objCustomer)
 {
     $this->onAction = $onAction;
     $this->objCustomer = $objCustomer;
     parent::__construct($sender);
 }
Ejemplo n.º 20
0
 public function __construct($sender, $idView, $dataProvider)
 {
     parent::__construct($sender);
     $this->idObjectView = $idView;
     $this->dataProvider = $dataProvider;
 }
Ejemplo n.º 21
0
 /**
  * Constructor.
  * @param mixed $sender sender of the event
  * @param customer $objCustomer error message
  */
 public function __construct($sender, $data_id = null, $product_id = null)
 {
     $this->data_id = $data_id;
     $this->product_id = $product_id;
     parent::__construct($sender);
 }
Ejemplo n.º 22
0
 /**
  * Constructor.
  * @param mixed $sender sender of the event
  * @param CException $exception the exception
  */
 public function __construct($sender, $exception)
 {
     $this->exception = $exception;
     parent::__construct($sender);
 }
Ejemplo n.º 23
0
 /**
  * @param mixed|null $sender
  * @param null $params
  */
 public function __construct($sender = null, $params = null)
 {
     parent::__construct($sender, $params);
     $this->setMailer(Yii::app()->mailer);
 }
Ejemplo n.º 24
0
 /**
  * Constructor.
  * @param mixed sender of this event
  */
 public function __construct($sender, $source, $destination)
 {
     parent::__construct($sender);
     $this->source = $source;
     $this->destination = $destination;
 }
 public function __construct($sender, $objectParameter, $visible = true)
 {
     parent::__construct($sender);
     $this->objectParameter = $objectParameter;
     $this->visible = $visible;
 }
Ejemplo n.º 26
0
 public function __construct($date = null)
 {
     parent::__construct($date);
     trigger_error("CCalendar has been deprecated in v3.0 and will be removed by v4.0. Please use CEvent instead.", E_USER_NOTICE);
 }
Ejemplo n.º 27
0
 public function __construct($sender = NULL, $data = NULL, $params = NULL)
 {
     if ($data !== NULL) {
         $this->data =& $data;
     }
     parent::__construct($sender, $params);
 }