Exemplo n.º 1
0
 public function __construct($pixie)
 {
     parent::__construct($pixie);
     $this->enabled = false;
     $this->in_stock = true;
     $this->status = self::STATUS_AVAILABLE;
     $this->show_in_root = true;
 }
Exemplo n.º 2
0
 public function __construct(Dibi\Connection $database, $worldSize)
 {
     parent::__construct($database);
     $this->worldSize = $worldSize;
 }
Exemplo n.º 3
0
 public function __construct(Nette\Database\Context $db, CarsModel $cm, MailManager $mm)
 {
     parent::__construct($db);
     $this->carsModel = $cm;
     $this->mailManager = $mm;
 }
Exemplo n.º 4
0
 public function __construct()
 {
     parent::__construct();
 }
Exemplo n.º 5
0
 public function __construct(App\Model\CategoryModel $categoryModel, Nette\Database\Context $database)
 {
     $this->categoryModel = $categoryModel;
     parent::__construct($database);
 }
Exemplo n.º 6
0
 public function __construct($storageCapacity, $storageMultiplier, Dibi\Connection $database)
 {
     $this->storageCapacity = $storageCapacity;
     $this->storageMultiplier = $storageMultiplier;
     parent::__construct($database);
 }