コード例 #1
0
ファイル: ScriptTagProxy.php プロジェクト: pablius/oob-n1
 /**
  * @param string $url The URL from which to request the data object.
  */
 public function __construct($url)
 {
     parent::__construct();
     $this->setExtClassInfo("Ext.data.ScriptTagProxy", null);
     $validProps = array("callbackParam", "nocache", "timeout", "url");
     $this->addValidConfigProperties($validProps);
     $this->setUrl($url);
 }
コード例 #2
0
ファイル: MemoryProxy.php プロジェクト: pablius/oob-n1
 public function __construct()
 {
     parent::__construct();
     $this->setExtClassInfo("Ext.data.MemoryProxy", null);
 }
コード例 #3
0
ファイル: HttpProxy.php プロジェクト: pablius/oob-n1
 /**
  * @param PhpExt_Data_Connection $conn an {@link PhpExt_Data_Connection} object, or options parameter to Ext.Ajax.request. If an options parameter is passed, the singleton Ext.Ajax object will be used to make the request.
  *
  */
 public function __construct($conn)
 {
     parent::__construct();
     $this->setExtClassInfo("Ext.data.HttpProxy", null);
     $this->conn = $conn;
 }