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