service | class |
---|---|
annotation_reader |
Doctrine\Common\Annotations\FileCacheReader |
assetic.asset_manager |
Assetic\Factory\LazyAssetManager |
assetic.controller |
Symfony\Bundle\AsseticBundle\Controller\AsseticController |
assetic.filter.cssrewrite |
Assetic\Filter\CssRewriteFilter |
assetic.filter_manager |
Symfony\Bundle\AsseticBundle\FilterManager |
assetic.request_listener |
Symfony\Bundle\AsseticBundle\EventListener\RequestListener |
cache_clearer |
Symfony\Component\HttpKernel\CacheClearer\ChainCacheClearer |
cache_warmer |
Symfony\Component\HttpKernel\CacheWarmer\CacheWarmerAggregate |
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 ParameterBag implements \IteratorAggregate, \Countable | |
{ | |
/** | |
* @var array | |
*/ | |
private $parameters; | |
private $froozen = false; |
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 | |
use Symfony\Component\PropertyAccess\PropertyAccessorInterface; | |
class ParameterAccessor | |
{ | |
private $parameters; | |
/** | |
* @var PropertyAccessorInterface |
Jekyll is a great CMS for developers and GitHub Pages is a great host to store your Jekyll sites. There is just one problem, GitHub runs Jekyll in safe mode, which means you can't use plugins. One thing you can do is building the Jekyll website locally and then push to GitHub.
Alexandre Rademaker found a solution to do this easially, which is quite usefull: "GitHub Pages and Jekyll plugins" After reading this I thought, that can be done easier!
Git provides a way to have aliases of bash commands. You can do this by adding items to the alias
key of your configuration. For this, you can add this locally by adding this lines to your %PROJECT_ROOT%/.git/config
file:
- http://symfony.com/doc/2.0/book/routing.html#creating-routes (xml format)
- http://symfony.com/doc/2.0/book/forms.html#form-theming (2nd code block Twig and PHP format)
- http://symfony.com/doc/2.0/book/forms.html#twig (XML format)
- http://symfony.com/doc/2.0/book/forms.html#php (XML format)
- http://symfony.com/doc/2.0/book/security.html#impersonating-a-user (4th code block Twig format)
- http://symfony.com/doc/2.0/book/http_cache.html#using-esi-in-symfony2 (XML format)
- http://symfony.com/doc/2.0/book/service_container.html#service-parameters (YAML format)
- http://symfony.com/doc/2.0/book/service_container.html#importing-configuration-with-imports (1st and 2nd code block YAML format)
- http://symfony.com/doc/2.0/book/service_container.html#referencing-injecting-services (3th code block YAML and XML format)
- http://symfony.com/doc/2.0/book/service_container.html#optional-dependencies-setter-injection (2nd code block YAML and XML format)
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 Authentication | |
{ | |
/** | |
* @var UserProviderInterface | |
*/ | |
private $userprovider; | |
/** |
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
Read more in :ref:`hello-world`. | |
// result: | |
Read more in <a href="other-file.html#hello-world">My World</a>. |
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
.. tip: | |
some tip text and...a list! | |
- Foobar with some very long text. Imagine this hits the 78 characters | |
and it will continue like this | |
- Lorem | |
- Symfony2 |
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
<ul> | |
{% for item in items %} | |
<li>{{ item }}</li> | |
{% endfor %} | |
</ul> | |
RESULT | |
<ul> | |
<li>...</li> |