To participate you must create an account on apostrophenow.org. If you have already done so, click Login.
- Timestamp:
- 04/27/10 14:25:35 (2 years ago)
- Author:
- johnnyoffline
- Message:
-
Blog migration and build all classes
- Files:
-
Legend:
- Unmodified
- Added
- Removed
-
|
r932
|
r1071
|
|
| 10 | 10 | * @property integer $page_id |
| 11 | 11 | * @property string $title |
| | 12 | * @property boolean $slug_saved |
| 12 | 13 | * @property string $excerpt |
| 13 | 14 | * @property enum $status |
| … |
… |
|
| 29 | 30 | * @method integer getPageId() Returns the current record's "page_id" value |
| 30 | 31 | * @method string getTitle() Returns the current record's "title" value |
| | 32 | * @method boolean getSlugSaved() Returns the current record's "slug_saved" value |
| 31 | 33 | * @method string getExcerpt() Returns the current record's "excerpt" value |
| 32 | 34 | * @method enum getStatus() Returns the current record's "status" value |
| … |
… |
|
| 47 | 49 | * @method aBlogItem setPageId() Sets the current record's "page_id" value |
| 48 | 50 | * @method aBlogItem setTitle() Sets the current record's "title" value |
| | 51 | * @method aBlogItem setSlugSaved() Sets the current record's "slug_saved" value |
| 49 | 52 | * @method aBlogItem setExcerpt() Sets the current record's "excerpt" value |
| 50 | 53 | * @method aBlogItem setStatus() Sets the current record's "status" value |
| … |
… |
|
| 91 | 94 | 'length' => 255, |
| 92 | 95 | )); |
| | 96 | $this->hasColumn('slug_saved', 'boolean', null, array( |
| | 97 | 'type' => 'boolean', |
| | 98 | 'default' => false, |
| | 99 | )); |
| 93 | 100 | $this->hasColumn('excerpt', 'string', null, array( |
| 94 | 101 | 'type' => 'string', |
| … |
… |
|
| 177 | 184 | $taggable0 = new Taggable(); |
| 178 | 185 | $sluggable0 = new Doctrine_Template_Sluggable(array( |
| 179 | | 'canUpdate' => true, |
| | 186 | 'fields' => |
| | 187 | array( |
| | 188 | 0 => 'title', |
| | 189 | ), |
| | 190 | 'builder' => |
| | 191 | array( |
| | 192 | 0 => 'aTools', |
| | 193 | 1 => 'slugify', |
| | 194 | ), |
| 180 | 195 | )); |
| 181 | 196 | $this->actAs($timestampable0); |
Download in other formats: