From 903ae8a581fac1e6917fc3e31d2ad8fb91df80c3 Mon Sep 17 00:00:00 2001 From: ctrlaltca <> Date: Thu, 12 Jul 2012 11:21:01 +0000 Subject: standardize the use of unix eol; use svn properties to enforce native eol --- demos/northwind-db/protected/database/Category.php | 50 ++++----- demos/northwind-db/protected/database/Customer.php | 64 +++++------ demos/northwind-db/protected/database/Employee.php | 94 ++++++++-------- demos/northwind-db/protected/database/Order.php | 82 +++++++------- .../protected/database/OrderDetail.php | 52 ++++----- demos/northwind-db/protected/database/Product.php | 70 ++++++------ demos/northwind-db/protected/database/Region.php | 48 ++++----- demos/northwind-db/protected/database/Shipper.php | 48 ++++----- demos/northwind-db/protected/database/Supplier.php | 66 ++++++------ .../northwind-db/protected/database/Territory.php | 118 ++++++++++----------- .../northwind-db/protected/pages/NorthwindCrud.php | 54 +++++----- 11 files changed, 373 insertions(+), 373 deletions(-) (limited to 'demos/northwind-db/protected') diff --git a/demos/northwind-db/protected/database/Category.php b/demos/northwind-db/protected/database/Category.php index 06fc979f..d708ee96 100644 --- a/demos/northwind-db/protected/database/Category.php +++ b/demos/northwind-db/protected/database/Category.php @@ -1,26 +1,26 @@ - array(self::HAS_MANY, 'Product'), - ); - - public static function finder($className=__CLASS__) - { - return parent::finder($className); - } -} + array(self::HAS_MANY, 'Product'), + ); + + public static function finder($className=__CLASS__) + { + return parent::finder($className); + } +} ?> \ No newline at end of file diff --git a/demos/northwind-db/protected/database/Customer.php b/demos/northwind-db/protected/database/Customer.php index 810f2a6a..464b384d 100644 --- a/demos/northwind-db/protected/database/Customer.php +++ b/demos/northwind-db/protected/database/Customer.php @@ -1,33 +1,33 @@ - array(self::HAS_MANY, 'Order'), - ); - - public static function finder($className=__CLASS__) - { - return parent::finder($className); - } -} + array(self::HAS_MANY, 'Order'), + ); + + public static function finder($className=__CLASS__) + { + return parent::finder($className); + } +} ?> \ No newline at end of file diff --git a/demos/northwind-db/protected/database/Employee.php b/demos/northwind-db/protected/database/Employee.php index 1e0f090e..573b887d 100644 --- a/demos/northwind-db/protected/database/Employee.php +++ b/demos/northwind-db/protected/database/Employee.php @@ -1,48 +1,48 @@ - array(self::MANY_TO_MANY, 'Territory', 'EmployeeTerritories'), - 'Orders' => array(self::HAS_MANY, 'Order'), - - //parent children relationship - 'Subordinates' => array(self::HAS_MANY, 'Employee'), - 'Superior' => array(self::BELONGS_TO, 'Employee') - ); - - public static function finder($className=__CLASS__) - { - return parent::finder($className); - } -} + array(self::MANY_TO_MANY, 'Territory', 'EmployeeTerritories'), + 'Orders' => array(self::HAS_MANY, 'Order'), + + //parent children relationship + 'Subordinates' => array(self::HAS_MANY, 'Employee'), + 'Superior' => array(self::BELONGS_TO, 'Employee') + ); + + public static function finder($className=__CLASS__) + { + return parent::finder($className); + } +} ?> \ No newline at end of file diff --git a/demos/northwind-db/protected/database/Order.php b/demos/northwind-db/protected/database/Order.php index 228fb2b5..2a425102 100644 --- a/demos/northwind-db/protected/database/Order.php +++ b/demos/northwind-db/protected/database/Order.php @@ -1,42 +1,42 @@ - array(self::HAS_MANY, 'OrderDetail'), - 'Customer' => array(self::BELONGS_TO, 'Customer'), - 'Shipper' => array(self::BELONGS_TO, 'Shipper'), - 'Employee' => array(self::BELONGS_TO, 'Employee'), - ); - - public static function finder($className=__CLASS__) - { - return parent::finder($className); - } -} + array(self::HAS_MANY, 'OrderDetail'), + 'Customer' => array(self::BELONGS_TO, 'Customer'), + 'Shipper' => array(self::BELONGS_TO, 'Shipper'), + 'Employee' => array(self::BELONGS_TO, 'Employee'), + ); + + public static function finder($className=__CLASS__) + { + return parent::finder($className); + } +} ?> \ No newline at end of file diff --git a/demos/northwind-db/protected/database/OrderDetail.php b/demos/northwind-db/protected/database/OrderDetail.php index 1732b0d9..47f77351 100644 --- a/demos/northwind-db/protected/database/OrderDetail.php +++ b/demos/northwind-db/protected/database/OrderDetail.php @@ -1,27 +1,27 @@ - array(self::BELONGS_TO, 'Product'), - 'Order' => array(self::BELONGS_TO, 'Order'), - ); - - public static function finder($className=__CLASS__) - { - return parent::finder($className); - } -} + array(self::BELONGS_TO, 'Product'), + 'Order' => array(self::BELONGS_TO, 'Order'), + ); + + public static function finder($className=__CLASS__) + { + return parent::finder($className); + } +} ?> \ No newline at end of file diff --git a/demos/northwind-db/protected/database/Product.php b/demos/northwind-db/protected/database/Product.php index 93736ab8..088fbbd2 100644 --- a/demos/northwind-db/protected/database/Product.php +++ b/demos/northwind-db/protected/database/Product.php @@ -1,36 +1,36 @@ - array(self::BELONGS_TO, 'Supplier'), - 'Category' => array(self::BELONGS_TO, 'Category'), - 'OrderDetails' => array(self::HAS_MANY, 'OrderDetail'), - ); - - public static function finder($className=__CLASS__) - { - return parent::finder($className); - } -} + array(self::BELONGS_TO, 'Supplier'), + 'Category' => array(self::BELONGS_TO, 'Category'), + 'OrderDetails' => array(self::HAS_MANY, 'OrderDetail'), + ); + + public static function finder($className=__CLASS__) + { + return parent::finder($className); + } +} ?> \ No newline at end of file diff --git a/demos/northwind-db/protected/database/Region.php b/demos/northwind-db/protected/database/Region.php index 3d1c2a84..6473e682 100644 --- a/demos/northwind-db/protected/database/Region.php +++ b/demos/northwind-db/protected/database/Region.php @@ -1,25 +1,25 @@ - array(self::HAS_MANY, 'Territory') - ); - - public static function finder($className=__CLASS__) - { - return parent::finder($className); - } -} + array(self::HAS_MANY, 'Territory') + ); + + public static function finder($className=__CLASS__) + { + return parent::finder($className); + } +} ?> \ No newline at end of file diff --git a/demos/northwind-db/protected/database/Shipper.php b/demos/northwind-db/protected/database/Shipper.php index a3f0aeb3..f90548ea 100644 --- a/demos/northwind-db/protected/database/Shipper.php +++ b/demos/northwind-db/protected/database/Shipper.php @@ -1,25 +1,25 @@ - array(self::HAS_MANY, 'Order'), - ); - - public static function finder($className=__CLASS__) - { - return parent::finder($className); - } -} + array(self::HAS_MANY, 'Order'), + ); + + public static function finder($className=__CLASS__) + { + return parent::finder($className); + } +} ?> \ No newline at end of file diff --git a/demos/northwind-db/protected/database/Supplier.php b/demos/northwind-db/protected/database/Supplier.php index 7cabdde5..bc3b44e0 100644 --- a/demos/northwind-db/protected/database/Supplier.php +++ b/demos/northwind-db/protected/database/Supplier.php @@ -1,34 +1,34 @@ - array(self::HAS_MANY, 'Product') - ); - - public static function finder($className=__CLASS__) - { - return parent::finder($className); - } -} + array(self::HAS_MANY, 'Product') + ); + + public static function finder($className=__CLASS__) + { + return parent::finder($className); + } +} ?> \ No newline at end of file diff --git a/demos/northwind-db/protected/database/Territory.php b/demos/northwind-db/protected/database/Territory.php index 16f33dea..96006bb1 100644 --- a/demos/northwind-db/protected/database/Territory.php +++ b/demos/northwind-db/protected/database/Territory.php @@ -1,60 +1,60 @@ - array(self::BELONGS_TO, 'Region'), - 'Employees' => array(self::HAS_MANY, 'Employee', 'EmployeeTerritories') - ); - - /** - * @return Region - */ - public function getRegion() - { - //lazy load the region - if($this->_region===null) - $this->_region = Region::finder()->findByPk($this->RegionID); - return $this->_region; - } - - public function setRegion($value) - { - $this->_region=$value; - } - - /** - * @return Employee[] - */ - public function getEmployees() - { - //lazy load - if($this->_employees==null) - $this->setEmployees($this->withEmployees()->findByPk($this->TerritoryID)->getEmployees()); - return $this->_employees; - } - - public function setEmployees($value) - { - //ensure TList - $this->_employees = $value instanceof TList ? $value : new TList($value); - } - - public static function finder($className=__CLASS__) - { - return parent::finder($className); - } -} + array(self::BELONGS_TO, 'Region'), + 'Employees' => array(self::HAS_MANY, 'Employee', 'EmployeeTerritories') + ); + + /** + * @return Region + */ + public function getRegion() + { + //lazy load the region + if($this->_region===null) + $this->_region = Region::finder()->findByPk($this->RegionID); + return $this->_region; + } + + public function setRegion($value) + { + $this->_region=$value; + } + + /** + * @return Employee[] + */ + public function getEmployees() + { + //lazy load + if($this->_employees==null) + $this->setEmployees($this->withEmployees()->findByPk($this->TerritoryID)->getEmployees()); + return $this->_employees; + } + + public function setEmployees($value) + { + //ensure TList + $this->_employees = $value instanceof TList ? $value : new TList($value); + } + + public static function finder($className=__CLASS__) + { + return parent::finder($className); + } +} ?> \ No newline at end of file diff --git a/demos/northwind-db/protected/pages/NorthwindCrud.php b/demos/northwind-db/protected/pages/NorthwindCrud.php index 57694caa..72297ac8 100644 --- a/demos/northwind-db/protected/pages/NorthwindCrud.php +++ b/demos/northwind-db/protected/pages/NorthwindCrud.php @@ -1,28 +1,28 @@ -getRecordClassList(Prado::getPathOfNamespace('Application.database.*')); - $this->class_list->dataSource = $classes; - $this->class_list->dataBind(); - } - - protected function getRecordClassList($directory) - { - $list=array(); - $folder=@opendir($directory); - while($entry=@readdir($folder)) - { - if($entry[0]==='.') - continue; - else if(is_file($directory.'/'.$entry) && strpos($entry,'.php')) - $list[] = str_replace('.php', '', $entry); - } - closedir($folder); - return $list; - } -} - +getRecordClassList(Prado::getPathOfNamespace('Application.database.*')); + $this->class_list->dataSource = $classes; + $this->class_list->dataBind(); + } + + protected function getRecordClassList($directory) + { + $list=array(); + $folder=@opendir($directory); + while($entry=@readdir($folder)) + { + if($entry[0]==='.') + continue; + else if(is_file($directory.'/'.$entry) && strpos($entry,'.php')) + $list[] = str_replace('.php', '', $entry); + } + closedir($folder); + return $list; + } +} + ?> \ No newline at end of file -- cgit v1.2.3