__construct() публичный Метод

public __construct ( )
Пример #1
0
 public function __construct()
 {
     parent::__construct();
     $this->setType('tempfile');
 }
Пример #2
0
 /**
  * Constructs a new image object.
  *
  * @param string $type The type for the image, one of the IMAGE_ constants.
  */
 public function __construct($type = null)
 {
     $this->setType($type);
     parent::__construct();
 }
Пример #3
0
 /**
  * Creates a new project attachment.
  */
 public function __construct()
 {
     parent::__construct();
     $this->setType('ProjectAttachment');
 }
Пример #4
0
 /**
  * Creates a new part attachment.
  */
 public function __construct()
 {
     parent::__construct();
     $this->setType('PartAttachment');
     $this->isImage = null;
 }
Пример #5
0
 /**
  * Creates a new footprint attachment
  */
 public function __construct()
 {
     parent::__construct();
     $this->setType("FootprintAttachment");
 }