예제 #1
0
파일: Public.php 프로젝트: nabble/ajde
 public function __construct($type, $filename, $arguments = '')
 {
     $url = ASSETS_URI . $type . '/' . $filename;
     $this->setUrl($url);
     $this->setArguments($arguments);
     parent::__construct($type);
 }
예제 #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);
 }
예제 #3
0
파일: Remote.php 프로젝트: nabble/ajde
 public function __construct($type, $url, $arguments = '')
 {
     $this->setUrl($url);
     $this->setArguments($arguments);
     parent::__construct($type);
 }
예제 #4
0
 public function __construct($type, $filename)
 {
     $this->setFilename($filename);
     parent::__construct($type);
 }