From 54e9feab491bcf8d1a95b486b68605cb4441e603 Mon Sep 17 00:00:00 2001 From: xue <> Date: Sat, 29 Sep 2007 22:07:12 +0000 Subject: Changed RELATIONS declaration. --- demos/blog-tutorial/protected/pages/Day2/CreateAR.page | 4 ++-- demos/blog-tutorial/protected/pages/Day2/fr/CreateAR.page | 4 ++-- demos/blog-tutorial/protected/pages/Day2/id/CreateAR.page | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) (limited to 'demos/blog-tutorial/protected/pages/Day2') diff --git a/demos/blog-tutorial/protected/pages/Day2/CreateAR.page b/demos/blog-tutorial/protected/pages/Day2/CreateAR.page index 381e2469..1d7838a2 100644 --- a/demos/blog-tutorial/protected/pages/Day2/CreateAR.page +++ b/demos/blog-tutorial/protected/pages/Day2/CreateAR.page @@ -134,7 +134,7 @@ class PostRecord extends TActiveRecord public $author; //holds an UserRecord - protected static $RELATIONS=array + public static $RELATIONS=array ( 'author' => array(self::BELONGS_TO, 'UserRecord'), ); @@ -152,7 +152,7 @@ class UserRecord extends TActiveRecord public $posts=array(); //holds an array of PostRecord - protected static $RELATIONS=array + public static $RELATIONS=array ( 'posts' => array(self::HAS_MANY, 'PostRecord'), ); diff --git a/demos/blog-tutorial/protected/pages/Day2/fr/CreateAR.page b/demos/blog-tutorial/protected/pages/Day2/fr/CreateAR.page index 82c1dbf8..1c5aae7b 100755 --- a/demos/blog-tutorial/protected/pages/Day2/fr/CreateAR.page +++ b/demos/blog-tutorial/protected/pages/Day2/fr/CreateAR.page @@ -133,7 +133,7 @@ class PostRecord extends TActiveRecord public $author; //contient un objet UserRecord - protected static $RELATIONS=array + public static $RELATIONS=array ( 'author' => array(self::BELONGS_TO, 'UserRecord'), ); @@ -151,7 +151,7 @@ class UserRecord extends TActiveRecord public $posts=array(); //contient un tableau de PostRecord - protected static $RELATIONS=array + public static $RELATIONS=array ( 'posts' => array(self::HAS_MANY, 'PostRecord'), ); diff --git a/demos/blog-tutorial/protected/pages/Day2/id/CreateAR.page b/demos/blog-tutorial/protected/pages/Day2/id/CreateAR.page index 533825c6..0d4b178d 100644 --- a/demos/blog-tutorial/protected/pages/Day2/id/CreateAR.page +++ b/demos/blog-tutorial/protected/pages/Day2/id/CreateAR.page @@ -134,7 +134,7 @@ class PostRecord extends TActiveRecord public $author; //menampung array UserRecord - protected static $RELATIONS=array + public static $RELATIONS=array ( 'author' => array(self::BELONGS_TO, 'UserRecord'), ); @@ -152,7 +152,7 @@ class UserRecord extends TActiveRecord public $posts=array(); //menampung array PostRecord - protected static $RELATIONS=array + public static $RELATIONS=array ( 'posts' => array(self::HAS_MANY, 'PostRecord'), ); -- cgit v1.2.3