diff options
| author | ctrlaltca <> | 2012-07-12 11:21:01 +0000 | 
|---|---|---|
| committer | ctrlaltca <> | 2012-07-12 11:21:01 +0000 | 
| commit | 903ae8a581fac1e6917fc3e31d2ad8fb91df80c3 (patch) | |
| tree | e08bf04f0823650a231227ac3499121270172a23 /demos/sqlmap | |
| parent | 3e4e6e66aeb3f8fea4e1eb4237498ef9d2358f63 (diff) | |
standardize the use of unix eol; use svn properties to enforce native eol
Diffstat (limited to 'demos/sqlmap')
| -rw-r--r-- | demos/sqlmap/index.php | 38 | ||||
| -rw-r--r-- | demos/sqlmap/protected/APP_CODE/Person.php | 50 | ||||
| -rw-r--r-- | demos/sqlmap/protected/pages/Manual/Layout.php | 12 | ||||
| -rw-r--r-- | demos/sqlmap/protected/pages/Manual/TopicList.php | 14 | ||||
| -rw-r--r-- | demos/sqlmap/protected/pages/Sample/crud1.php | 40 | ||||
| -rw-r--r-- | demos/sqlmap/protected/pages/Sample/crud2.php | 154 | 
6 files changed, 154 insertions, 154 deletions
diff --git a/demos/sqlmap/index.php b/demos/sqlmap/index.php index afada2c1..3d7997fa 100644 --- a/demos/sqlmap/index.php +++ b/demos/sqlmap/index.php @@ -1,20 +1,20 @@ -<?php
 -
 -$basePath=dirname(__FILE__);
 -$frameworkPath='../../framework/prado.php';
 -$assetsPath=$basePath."/assets";
 -$runtimePath=$basePath."/protected/runtime";
 -
 -if(!is_file($frameworkPath))
 -	die("Unable to find prado framework path $frameworkPath.");
 -if(!is_writable($assetsPath))
 -	die("Please make sure that the directory $assetsPath is writable by Web server process.");
 -if(!is_writable($runtimePath))
 -	die("Please make sure that the directory $runtimePath is writable by Web server process.");
 -
 -require_once($frameworkPath);
 -
 -$application=new TApplication;
 -$application->run();
 -
 +<?php + +$basePath=dirname(__FILE__); +$frameworkPath='../../framework/prado.php'; +$assetsPath=$basePath."/assets"; +$runtimePath=$basePath."/protected/runtime"; + +if(!is_file($frameworkPath)) +	die("Unable to find prado framework path $frameworkPath."); +if(!is_writable($assetsPath)) +	die("Please make sure that the directory $assetsPath is writable by Web server process."); +if(!is_writable($runtimePath)) +	die("Please make sure that the directory $runtimePath is writable by Web server process."); + +require_once($frameworkPath); + +$application=new TApplication; +$application->run(); +  ?>
\ No newline at end of file diff --git a/demos/sqlmap/protected/APP_CODE/Person.php b/demos/sqlmap/protected/APP_CODE/Person.php index ad9da4b3..e3daeec6 100644 --- a/demos/sqlmap/protected/APP_CODE/Person.php +++ b/demos/sqlmap/protected/APP_CODE/Person.php @@ -1,26 +1,26 @@ -<?php
 -
 -class Person
 -{
 -    public $ID = -1;
 -    public $FirstName = '';
 -    public $LastName = '';
 -
 -    public $WeightInKilograms = 0.0;
 -    public $HeightInMeters = 0.0;
 -
 -    private $_birthDate = '';
 -
 -    //setters and getter for BirthDate
 -    public function getBirthDate()
 -    {
 -        return $this->_birthDate;
 -    }
 -
 -    public function setBirthDate($value)
 -    {
 -        $this->_birthDate = $value;
 -    }
 -}
 -
 +<?php + +class Person +{ +    public $ID = -1; +    public $FirstName = ''; +    public $LastName = ''; + +    public $WeightInKilograms = 0.0; +    public $HeightInMeters = 0.0; + +    private $_birthDate = ''; + +    //setters and getter for BirthDate +    public function getBirthDate() +    { +        return $this->_birthDate; +    } + +    public function setBirthDate($value) +    { +        $this->_birthDate = $value; +    } +} +  ?>
\ No newline at end of file diff --git a/demos/sqlmap/protected/pages/Manual/Layout.php b/demos/sqlmap/protected/pages/Manual/Layout.php index e612d52d..cbdb6c04 100644 --- a/demos/sqlmap/protected/pages/Manual/Layout.php +++ b/demos/sqlmap/protected/pages/Manual/Layout.php @@ -1,7 +1,7 @@ -<?php
 -
 -class Layout extends TTemplateControl
 -{
 -
 -}
 +<?php + +class Layout extends TTemplateControl +{ + +}  ?>
\ No newline at end of file diff --git a/demos/sqlmap/protected/pages/Manual/TopicList.php b/demos/sqlmap/protected/pages/Manual/TopicList.php index ce827cc0..eb5976a9 100644 --- a/demos/sqlmap/protected/pages/Manual/TopicList.php +++ b/demos/sqlmap/protected/pages/Manual/TopicList.php @@ -1,8 +1,8 @@ -<?php
 -
 -class TopicList extends TTemplateControl
 -{
 -
 -}
 -
 +<?php + +class TopicList extends TTemplateControl +{ + +} +  ?>
\ No newline at end of file diff --git a/demos/sqlmap/protected/pages/Sample/crud1.php b/demos/sqlmap/protected/pages/Sample/crud1.php index 9ea6e05e..fe1131b8 100644 --- a/demos/sqlmap/protected/pages/Sample/crud1.php +++ b/demos/sqlmap/protected/pages/Sample/crud1.php @@ -1,21 +1,21 @@ -<?php
 -
 -Prado::using('Example.Person');
 -
 -class crud1 extends TPage
 -{
 -    private function loadData()
 -    {
 -        $sqlmap = $this->Application->Modules['person-sample']->Client;
 -        $this->personList->DataSource = $sqlmap->queryForList('SelectAll');
 -		$this->personList->dataBind();
 -    }
 -
 -	public function onLoad($param)
 -	{
 -		if(!$this->IsPostBack)
 -			$this->loadData();
 -	}
 -}
 -
 +<?php + +Prado::using('Example.Person'); + +class crud1 extends TPage +{ +    private function loadData() +    { +        $sqlmap = $this->Application->Modules['person-sample']->Client; +        $this->personList->DataSource = $sqlmap->queryForList('SelectAll'); +		$this->personList->dataBind(); +    } + +	public function onLoad($param) +	{ +		if(!$this->IsPostBack) +			$this->loadData(); +	} +} +  ?>
\ No newline at end of file diff --git a/demos/sqlmap/protected/pages/Sample/crud2.php b/demos/sqlmap/protected/pages/Sample/crud2.php index 3d2087bb..18720146 100644 --- a/demos/sqlmap/protected/pages/Sample/crud2.php +++ b/demos/sqlmap/protected/pages/Sample/crud2.php @@ -1,78 +1,78 @@ -<?php
 -
 -Prado::using('Example.Person');
 -
 -class crud2 extends TPage
 -{
 -	private function sqlmap()
 -	{
 -		return $this->Application->Modules['person-sample']->Client;
 -	}
 -
 -	private function loadData()
 -	{
 -		$this->personList->DataSource =  $this->sqlmap()->queryForList('SelectAll');
 -		$this->personList->dataBind();
 -	}
 -
 -	public function onLoad($param)
 -	{
 -		if(!$this->IsPostBack)
 -			$this->loadData();
 -	}
 -
 -	protected function editPerson($sender,$param)
 -	{
 -		$this->personList->EditItemIndex=$param->Item->ItemIndex;
 -		$this->loadData();
 -	}
 -
 -	protected function deletePerson($sender, $param)
 -	{
 -		$id = $this->getKey($sender, $param);
 -
 -		$this->sqlmap()->update("Delete", $id);
 -		$this->loadData();
 -	}
 -
 -	protected function updatePerson($sender, $param)
 -	{
 -		$person = new Person();
 -		$person->FirstName = $this->getText($param, 0);
 -		$person->LastName = $this->getText($param, 1);
 -		$person->HeightInMeters = $this->getText($param, 2);
 -		$person->WeightInKilograms = $this->getText($param, 3);
 -		$person->ID = $this->getKey($sender, $param);
 -
 -		$this->sqlmap()->update("Update", $person);
 -		$this->refreshList($sender, $param);
 -	}
 -
 -	protected function addNewPerson($sender, $param)
 -	{
 -		$person = new Person;
 -		$person->FirstName = "-- New Person --";
 -		$this->sqlmap()->insert("Insert", $person);
 -
 -		$this->loadData();;
 -	}
 -
 -	protected function refreshList($sender, $param)
 -	{
 -		$this->personList->EditItemIndex=-1;
 -		$this->loadData();
 -	}
 -
 -	private function getText($param, $index)
 -	{
 -		$item = $param->Item;
 -		return $item->Cells[$index]->Controls[0]->Text;
 -	}
 -
 -	private function getKey($sender, $param)
 -	{
 -		return $sender->DataKeys[$param->Item->DataSourceIndex];
 -	}
 -}
 -
 +<?php + +Prado::using('Example.Person'); + +class crud2 extends TPage +{ +	private function sqlmap() +	{ +		return $this->Application->Modules['person-sample']->Client; +	} + +	private function loadData() +	{ +		$this->personList->DataSource =  $this->sqlmap()->queryForList('SelectAll'); +		$this->personList->dataBind(); +	} + +	public function onLoad($param) +	{ +		if(!$this->IsPostBack) +			$this->loadData(); +	} + +	protected function editPerson($sender,$param) +	{ +		$this->personList->EditItemIndex=$param->Item->ItemIndex; +		$this->loadData(); +	} + +	protected function deletePerson($sender, $param) +	{ +		$id = $this->getKey($sender, $param); + +		$this->sqlmap()->update("Delete", $id); +		$this->loadData(); +	} + +	protected function updatePerson($sender, $param) +	{ +		$person = new Person(); +		$person->FirstName = $this->getText($param, 0); +		$person->LastName = $this->getText($param, 1); +		$person->HeightInMeters = $this->getText($param, 2); +		$person->WeightInKilograms = $this->getText($param, 3); +		$person->ID = $this->getKey($sender, $param); + +		$this->sqlmap()->update("Update", $person); +		$this->refreshList($sender, $param); +	} + +	protected function addNewPerson($sender, $param) +	{ +		$person = new Person; +		$person->FirstName = "-- New Person --"; +		$this->sqlmap()->insert("Insert", $person); + +		$this->loadData();; +	} + +	protected function refreshList($sender, $param) +	{ +		$this->personList->EditItemIndex=-1; +		$this->loadData(); +	} + +	private function getText($param, $index) +	{ +		$item = $param->Item; +		return $item->Cells[$index]->Controls[0]->Text; +	} + +	private function getKey($sender, $param) +	{ +		return $sender->DataKeys[$param->Item->DataSourceIndex]; +	} +} +  ?>
\ No newline at end of file  | 
