diff options
author | Jérémy Benoist <j0k3r@users.noreply.github.com> | 2019-05-29 11:14:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-29 11:14:00 +0200 |
commit | 73ec68b1ffafb792265a3805833e5cd84c966aed (patch) | |
tree | 33c6040c050f85c537f8dbf5e91d8c281db092cd /src/Wallabag/AnnotationBundle/DataFixtures/AnnotationFixtures.php | |
parent | 2ba365c7c49556cd23b444dc3bb8d4a8cf08809d (diff) | |
parent | 2cbee36a0184786644470a84fdd8c720cfcac58e (diff) | |
download | wallabag-73ec68b1ffafb792265a3805833e5cd84c966aed.tar.gz wallabag-73ec68b1ffafb792265a3805833e5cd84c966aed.tar.zst wallabag-73ec68b1ffafb792265a3805833e5cd84c966aed.zip |
Merge pull request #3984 from wallabag/2.4
Merge 2.4 into master
Diffstat (limited to 'src/Wallabag/AnnotationBundle/DataFixtures/AnnotationFixtures.php')
-rw-r--r-- | src/Wallabag/AnnotationBundle/DataFixtures/AnnotationFixtures.php | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/src/Wallabag/AnnotationBundle/DataFixtures/AnnotationFixtures.php b/src/Wallabag/AnnotationBundle/DataFixtures/AnnotationFixtures.php new file mode 100644 index 00000000..ed46cea9 --- /dev/null +++ b/src/Wallabag/AnnotationBundle/DataFixtures/AnnotationFixtures.php | |||
@@ -0,0 +1,50 @@ | |||
1 | <?php | ||
2 | |||
3 | namespace Wallabag\AnnotationBundle\DataFixtures; | ||
4 | |||
5 | use Doctrine\Bundle\FixturesBundle\Fixture; | ||
6 | use Doctrine\Common\DataFixtures\DependentFixtureInterface; | ||
7 | use Doctrine\Common\Persistence\ObjectManager; | ||
8 | use Wallabag\AnnotationBundle\Entity\Annotation; | ||
9 | use Wallabag\CoreBundle\DataFixtures\EntryFixtures; | ||
10 | use Wallabag\UserBundle\DataFixtures\UserFixtures; | ||
11 | |||
12 | class AnnotationFixtures extends Fixture implements DependentFixtureInterface | ||
13 | { | ||
14 | /** | ||
15 | * {@inheritdoc} | ||
16 | */ | ||
17 | public function load(ObjectManager $manager) | ||
18 | { | ||
19 | $annotation1 = new Annotation($this->getReference('admin-user')); | ||
20 | $annotation1->setEntry($this->getReference('entry1')); | ||
21 | $annotation1->setText('This is my annotation /o/'); | ||
22 | $annotation1->setQuote('content'); | ||
23 | |||
24 | $manager->persist($annotation1); | ||
25 | |||
26 | $this->addReference('annotation1', $annotation1); | ||
27 | |||
28 | $annotation2 = new Annotation($this->getReference('admin-user')); | ||
29 | $annotation2->setEntry($this->getReference('entry2')); | ||
30 | $annotation2->setText('This is my 2nd annotation /o/'); | ||
31 | $annotation2->setQuote('content'); | ||
32 | |||
33 | $manager->persist($annotation2); | ||
34 | |||
35 | $this->addReference('annotation2', $annotation2); | ||
36 | |||
37 | $manager->flush(); | ||
38 | } | ||
39 | |||
40 | /** | ||
41 | * {@inheritdoc} | ||
42 | */ | ||
43 | public function getDependencies() | ||
44 | { | ||
45 | return [ | ||
46 | EntryFixtures::class, | ||
47 | UserFixtures::class, | ||
48 | ]; | ||
49 | } | ||
50 | } | ||