Changeset 12258
- Timestamp:
- 10/19/08 21:16:13 (5 years ago)
- Files:
-
- plugins/sfDoctrineActAsTaggablePlugin/branches/1.1/dev_environment/config/doctrine/schema.yml (modified) (1 diff)
- plugins/sfDoctrineActAsTaggablePlugin/branches/1.1/dev_environment/data/fixtures/data.yml (modified) (1 diff)
- plugins/sfDoctrineActAsTaggablePlugin/branches/1.1/dev_environment/lib/model/doctrine/BlogComment.class.php (added)
- plugins/sfDoctrineActAsTaggablePlugin/branches/1.1/dev_environment/lib/model/doctrine/BlogCommentTable.class.php (added)
- plugins/sfDoctrineActAsTaggablePlugin/branches/1.1/dev_environment/lib/model/doctrine/UnTaggableModel.class.php (added)
- plugins/sfDoctrineActAsTaggablePlugin/branches/1.1/dev_environment/lib/model/doctrine/UnTaggableModelTable.class.php (added)
- plugins/sfDoctrineActAsTaggablePlugin/branches/1.1/dev_environment/lib/model/doctrine/generated/BaseBlogComment.class.php (added)
- plugins/sfDoctrineActAsTaggablePlugin/branches/1.1/dev_environment/lib/model/doctrine/generated/BaseBlogPost.class.php (modified) (1 diff)
- plugins/sfDoctrineActAsTaggablePlugin/branches/1.1/dev_environment/lib/model/doctrine/generated/BaseUnTaggableModel.class.php (added)
- plugins/sfDoctrineActAsTaggablePlugin/branches/1.1/dev_environment/test/unit/sfDoctrineActAsTaggableTest.php (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
plugins/sfDoctrineActAsTaggablePlugin/branches/1.1/dev_environment/config/doctrine/schema.yml
r12257 r12258 1 1 BlogPost: 2 actAs: 3 Taggable: 2 4 columns: 3 5 title: string(255) 6 7 BlogComment: 8 actAs: 9 Taggable: 10 columns: 11 title: string(255) 12 13 UnTaggableModel: 14 columns: 15 title: string(255) plugins/sfDoctrineActAsTaggablePlugin/branches/1.1/dev_environment/data/fixtures/data.yml
r12257 r12258 1 1 BlogPost: 2 2 BlogPost_1: 3 title: My test title3 title: My test blog post title 4 4 BlogPost_2: 5 title: My other test title 5 title: My other test blog post title 6 7 BlogComment: 8 BlogComment_1: 9 title: My test blog comment title 10 BlogComment_2: 11 title: My other test blog comment title 12 13 UnTaggableModel: 14 UnTaggableModel_1: 15 title: Hey, I'm not taggable! plugins/sfDoctrineActAsTaggablePlugin/branches/1.1/dev_environment/lib/model/doctrine/generated/BaseBlogPost.class.php
r12257 r12258 12 12 } 13 13 14 public function setUp() 15 { 16 $taggable0 = new Taggable(); 17 $this->actAs($taggable0); 18 } 14 19 }