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
`deepthoughtPro:netpbm-10.35.78 lukemackenzie$ brew rm jpeg | |
Uninstalling /usr/local/Cellar/jpeg/8b... | |
deepthoughtPro:netpbm-10.35.78 lukemackenzie$ brew install jpeg | |
==> Downloading http://www.ijg.org/files/jpegsrc.v8b.tar.gz | |
File already downloaded and cached to /Users/lukemackenzie/Library/Caches/Homebrew | |
==> ./configure --prefix=/usr/local/Cellar/jpeg/8b --disable-dependency-tracking | |
==> make install | |
/usr/local/Cellar/jpeg/8b: 17 files, 1.6M, built in 28 seconds | |
deepthoughtPro:netpbm-10.35.78 lukemackenzie$ brew install netpbm |
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
A template that extends another one cannot have a body (Twig_Node_Print( | |
expr: Twig_Node_Expression_Filter( | |
node: Twig_Node_Expression_Constant(value: 'registration.check_email') | |
filter: Twig_Node_Expression_Constant(value: 'trans') | |
arguments: Twig_Node( | |
0: Twig_Node_Expression_Array( | |
%email%: Twig_Node_Expression_GetAttr(type: 'any' | |
node: Twig_Node_Expression_Name(name: 'user') | |
attribute: Twig_Node_Expression_Constant(value: 'email') | |
arguments: Twig_Node() |
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 Gymloop\CoreBundle\Entity; | |
use Doctrine\ORM\Mapping as ORM; | |
/** | |
* @ORM\Entity | |
* @ORM\Table(name="programmes") | |
*/ | |
class Programme | |
{ |
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 Gymloop\CoreBundle\Entity; | |
use Doctrine\Common\Collections\ArrayCollection; | |
use FOS\UserBundle\Entity\User as BaseUser; | |
use Doctrine\ORM\Mapping as ORM; | |
/** | |
* @ORM\Entity | |
* @ORM\Table(name="fos_user") |
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
parameters: | |
date_format: m/D/y | |
services: | |
gymloop_profile_type: | |
class: Gymloop\CoreBundle\Form\ProfileFormType | |
tags: | |
- { name: form.type, alias: gymloop.profile.type } | |
arguments: [%fos_user.model.user.class%] | |
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 | |
/* | |
* This file is part of the FOSUserBundle package. | |
* | |
* (c) FriendsOfSymfony <http://friendsofsymfony.github.com/> | |
* | |
* For the full copyright and license information, please view the LICENSE | |
* file that was distributed with this source code. | |
*/ |
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 | |
/* | |
* This file is part of the FOSUserBundle package. | |
* | |
* (c) FriendsOfSymfony <http://friendsofsymfony.github.com/> | |
* | |
* For the full copyright and license information, please view the LICENSE | |
* file that was distributed with this source code. | |
*/ |
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 Gymloop\CoreBundle\Entity; | |
use Doctrine\Common\Collections\ArrayCollection; | |
use FOS\UserBundle\Entity\User as BaseUser; | |
use Doctrine\ORM\Mapping as ORM; | |
/** | |
* @ORM\Entity |
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 | |
/* | |
* This file is part of the FOSUserBundle package. | |
* | |
* (c) FriendsOfSymfony <http://friendsofsymfony.github.com/> | |
* | |
* For the full copyright and license information, please view the LICENSE | |
* file that was distributed with this source code. | |
*/ |
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
{# this can be used to get an individual form value {{form.username.get('value') } #} | |
{#classes like input_large are from the formalize framework - see formalize.css#} | |
<form class="grid_6 prefix_1" action="{{ path('fos_user_profile_edit') }}" {{ form_enctype(form) }} method="POST" class="fos_user_profile_edit"> | |
{{ form_errors(form) }} | |
<div class="grid_2 alpha"> | |
{{ form_label(form.first_name, 'First Name: ') }} | |
</div> |
OlderNewer