This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$builder->addEventListener( | |
FormEvents::PRE_SUBMIT, | |
function (FormEvent $event) { | |
$data = $event->getData(); | |
if (isset($data['url'])) { | |
$url = (string) $data['url']; | |
if (empty($url)) { | |
$url = isset($data['title']) ? (string) $data['title'] : null; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$name = 'js'; | |
$outputPath = 'assets/js/cache'; | |
$assets = array( | |
'file1.js', | |
'file2.js', | |
); | |
$filterManager = null; | |
// $filterManager = new \Assetic\FilterManager(); | |
// $filterManager->set('cssrewrite', new \Assetic\Filter\CssRewriteFilter()); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace S2\AppBundle\Security\Voter; | |
use FOS\UserBundle\Model\UserInterface; | |
use JMS\DiExtraBundle\Annotation as DI; | |
use Symfony\Component\Security\Core\Authentication\Token\TokenInterface; | |
use Symfony\Component\Security\Core\Authorization\Voter\VoterInterface; | |
/** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
95.141.32.46 | |
95.211.217.68 | |
91.109.115.41 | |
83.170.113.210 | |
188.138.118.144 | |
174.34.224.167 | |
72.46.140.106 | |
76.72.172.208 | |
184.75.210.226 | |
78.40.124.16 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
twig: | |
form: | |
resources: | |
- "Form/form_theme.html.twig" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace AppBundle\File; | |
use AppBundle\File\Namer\NamerInterface; | |
use AppBundle\File\UrlGenerator\FileUrlGeneratorInterface; | |
use League\Flysystem\Filesystem; | |
abstract class AbstractFile | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
services: | |
repository.bucket: | |
class: AppBundle\Entity\BucketRepository | |
factory: ['@doctrine.orm.default_entity_manager', getRepository] | |
arguments: [AppBundle\Entity\Bucket] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace AppBundle\DataFixtures\Faker; | |
use Doctrine\Common\Collections\ArrayCollection; | |
class ArrayCollectionProvider | |
{ | |
public function ArrayCollection($elements) | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Model\Address (local): | |
address_{1..20}: | |
street: <streetName()> | |
city: <city()> | |
state: 'NC' | |
zip: <postcode()> | |
Entity\Foo: | |
foo_{1..20}: | |
name (unique): <company()> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$errors = []; | |
foreach ($form->getErrors(true, true) as $error) { | |
$errors[$error->getOrigin()->getName()] = $error->getMessage(); | |
} |