mirror of
				https://gitlab.com/Chill-Projet/chill-bundles.git
				synced 2025-11-04 11:18:25 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			51 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
/**
 | 
						|
 * Chill is a software for social workers
 | 
						|
 *
 | 
						|
 * For the full copyright and license information, please view
 | 
						|
 * the LICENSE file that was distributed with this source code.
 | 
						|
 */
 | 
						|
 | 
						|
declare(strict_types=1);
 | 
						|
 | 
						|
namespace Chill\ActivityBundle\DataFixtures\ORM;
 | 
						|
 | 
						|
use Chill\ActivityBundle\Entity\ActivityReasonCategory;
 | 
						|
use Doctrine\Common\DataFixtures\AbstractFixture;
 | 
						|
use Doctrine\Common\DataFixtures\OrderedFixtureInterface;
 | 
						|
use Doctrine\Persistence\ObjectManager;
 | 
						|
 | 
						|
/**
 | 
						|
 * Description of LoadActivityReasonCategory.
 | 
						|
 */
 | 
						|
class LoadActivityReasonCategory extends AbstractFixture implements OrderedFixtureInterface
 | 
						|
{
 | 
						|
    public function getOrder()
 | 
						|
    {
 | 
						|
        return 16200;
 | 
						|
    }
 | 
						|
 | 
						|
    public function load(ObjectManager $manager)
 | 
						|
    {
 | 
						|
        $categs = [
 | 
						|
            ['name' => ['fr' => 'Logement', 'en' => 'Housing', 'nl' => 'Woning']],
 | 
						|
            ['name' => ['fr' => 'Démarches chômage', 'en' => 'Unemployment procedure', 'nl' => 'Werkloosheid werkwijze']],
 | 
						|
        ];
 | 
						|
 | 
						|
        foreach ($categs as $c) {
 | 
						|
            echo 'Creating activity reason category : ' . $c['name']['en'] . "\n";
 | 
						|
            $activityReasonCategory = (new ActivityReasonCategory())
 | 
						|
                ->setName(($c['name']))
 | 
						|
                ->setActive(true);
 | 
						|
            $manager->persist($activityReasonCategory);
 | 
						|
            $this->addReference(
 | 
						|
                'cat_' . $c['name']['en'],
 | 
						|
                $activityReasonCategory
 | 
						|
            );
 | 
						|
        }
 | 
						|
 | 
						|
        $manager->flush();
 | 
						|
    }
 | 
						|
}
 |