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
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
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
<?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
$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
$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
setup: function (editor) { | |
editor.on('init', function(args) { | |
editor = args.target; | |
editor.on('NodeChange', function(e) { | |
if (e && e.element.nodeName.toLowerCase() == 'img') { | |
tinyMCE.DOM.setAttribs(e.element, {'width': null, 'height': 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
Kohana::$config->attach(new Config_Database); |
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 | |
class FileInspector | |
{ | |
protected $filename; | |
protected $namespace; | |
protected $contents; | |
public function __construct($filename) { | |
if ( ! $this->contents = @file_get_contents($filename)) { |
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\FooBundle\Form\Type; | |
use Symfony\Component\Form\AbstractType; | |
use S2\FooBundle\Form\Type\PartialAddressType; | |
use Symfony\Component\Form\FormBuilderInterface; | |
class FooAddressType extends AbstractType | |
{ |