groenewege + symfony 187
Symfony - Videos
march 2011 by groenewege
Missed #symfony_live in Paris? Shame on you ;) but still, enjoy the recorded sessions #symfony
symfony2
symfony
from twitter_favs
march 2011 by groenewege
swCombinePlugin
february 2011 by groenewege
This plugin combines javascript and stylesheet files into optimized files.
symfony
performance
february 2011 by groenewege
Offers a way to save files as a cleaned, unique version of the original filename in symfony1
december 2010 by groenewege
Not groundbreaking, but my symfony1 validated file class. Keeps the original filename, but cleaned and unique
symfony
from twitter_favs
december 2010 by groenewege
migrations
november 2010 by groenewege
Migrations
when starting to use migrations :
## on your DEV system!
./symfony doctrine:generate-migrations-models
# -> will generate migration classes that upgrade from a blank database to ...
doctrine
symfony
from notes
when starting to use migrations :
## on your DEV system!
./symfony doctrine:generate-migrations-models
# -> will generate migration classes that upgrade from a blank database to ...
november 2010 by groenewege
A quick start guide to deploying symfony/doctrine applications with migrations
november 2010 by groenewege
get started with the migration feature of doctrine
symfony
doctrine
november 2010 by groenewege
Easy ajax forms with sfDoctrineDynamicFormRelationsPlugin | Synofony
october 2010 by groenewege
@kriswallsmith just published an example of how to use your awesome plugin hope I got it right, hope it helps people!
symfony
from twitter_favs
october 2010 by groenewege
change the is_empty label in sf admin filter
october 2010 by groenewege
example :
$this->widgetSchema['title'] = new sfWidgetFormFilterInput(array('empty_label'=>'vide'));
symfony
from notes
$this->widgetSchema['title'] = new sfWidgetFormFilterInput(array('empty_label'=>'vide'));
october 2010 by groenewege
Import CSV data
october 2010 by groenewege
function parseCsvFile($file, $columnheadings = false, $delimiter = ',', $enclosure = "\""){
$row = 1;
$rows = array();
$handle = fopen($file, 'r');
while (($data = fgetcsv($handl...
symfony
doctrine
from notes
$row = 1;
$rows = array();
$handle = fopen($file, 'r');
while (($data = fgetcsv($handl...
october 2010 by groenewege
Change the primary key
october 2010 by groenewege
class Tag extends BaseTag
{
public function setName($name)
{
$tag = Doctrine::getTable('Tag')->findOneByName($name);
if ($tag) {
$this->assignIdentifier($tag->identifier());
...
doctrine
symfony
from notes
{
public function setName($name)
{
$tag = Doctrine::getTable('Tag')->findOneByName($name);
if ($tag) {
$this->assignIdentifier($tag->identifier());
...
october 2010 by groenewege
batch sending email
october 2010 by groenewege
$swift = new Swift(new Swift_Connection_SMTP('localhost'), 'DOMAIN');
/* 100 mails per batch with a 60 second pause between batches */
$swift->attachPlugin(new Swift_Plugin_AntiFlood(100, 60),...
symfony
mail
from notes
/* 100 mails per batch with a 60 second pause between batches */
$swift->attachPlugin(new Swift_Plugin_AntiFlood(100, 60),...
october 2010 by groenewege
mysql import test for symfony
october 2010 by groenewege
public function executeTest(sfWebRequest $request)
{
$connexion = Doctrine_Manager::getInstance()->getCurrentConnection();
$csv_file = sfConfig::get('sf_upload_dir').'/import.csv';
$qu...
symfony
mysql
from notes
{
$connexion = Doctrine_Manager::getInstance()->getCurrentConnection();
$csv_file = sfConfig::get('sf_upload_dir').'/import.csv';
$qu...
october 2010 by groenewege
Symfony Performance
october 2010 by groenewege
RT @pgodel: RT @thrashr888: Check out this SlideShare presentation : Symfony Performance
performance
symfony
from twitter_favs
october 2010 by groenewege
noelg's symfony-jcalendar at master - GitHub
october 2010 by groenewege
RT @noelguilbert: Released a new app, based on a jQuery Calendar and #Symfony2 : get the code
symfony
jquery
from twitter_favs
october 2010 by groenewege
annismckenzie's ahDoctrineEasyEmbeddedRelationsPlugin
may 2010 by groenewege
The `ahDoctrineEasyEmbeddedRelationsPlugin` is a symfony plugin that provides a Doctrine base form class to allow easy
symfony
may 2010 by groenewege
Copy this bookmark: