Esempio n. 1
0
 public function __construct($type, $filename, $arguments = '')
 {
     $url = ASSETS_URI . $type . '/' . $filename;
     $this->setUrl($url);
     $this->setArguments($arguments);
     parent::__construct($type);
 }
Esempio n. 2
0
 public function __construct($type, $base, $action, $format = 'html', $arguments = '')
 {
     $this->setBase($base);
     $this->setAction($action);
     $this->setFormat($format);
     $this->setArguments($arguments);
     parent::__construct($type);
 }
Esempio n. 3
0
 public function __construct($type, $url, $arguments = '')
 {
     $this->setUrl($url);
     $this->setArguments($arguments);
     parent::__construct($type);
 }
Esempio n. 4
0
 public function __construct($type, $filename)
 {
     $this->setFilename($filename);
     parent::__construct($type);
 }