groenewege + symfony   187

Symfony - Videos
Missed in Paris? Shame on you ;) but still, enjoy the recorded sessions
symfony2  symfony  from twitter_favs
march 2011 by groenewege
swCombinePlugin
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
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
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
november 2010 by groenewege
Easy ajax forms with sfDoctrineDynamicFormRelationsPlugin | Synofony
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
example :


$this->widgetSchema['title'] = new sfWidgetFormFilterInput(array('empty_label'=>'vide'));
symfony  from notes
october 2010 by groenewege
Import CSV data
function parseCsvFile($file, $columnheadings = false, $delimiter = ',', $enclosure = "\""){
$row = 1;
$rows = array();
$handle = fopen($file, 'r');

while (($data = fgetcsv($handl...
symfony  doctrine  from notes
october 2010 by groenewege
Change the primary key
class Tag extends BaseTag
{
public function setName($name)
{
$tag = Doctrine::getTable('Tag')->findOneByName($name);
if ($tag) {
$this->assignIdentifier($tag->identifier());
...
doctrine  symfony  from notes
october 2010 by groenewege
batch sending email
$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
october 2010 by groenewege
mysql import test for symfony
public function executeTest(sfWebRequest $request)
{
$connexion = Doctrine_Manager::getInstance()->getCurrentConnection();
$csv_file = sfConfig::get('sf_upload_dir').'/import.csv';
$qu...
symfony  mysql  from notes
october 2010 by groenewege
Symfony Performance
RT : RT : Check out this SlideShare presentation : Symfony Performance
performance  symfony  from twitter_favs
october 2010 by groenewege
noelg's symfony-jcalendar at master - GitHub
RT : Released a new app, based on a jQuery Calendar and : get the code
symfony  jquery  from twitter_favs
october 2010 by groenewege
annismckenzie's ahDoctrineEasyEmbeddedRelationsPlugin
The `ahDoctrineEasyEmbeddedRelationsPlugin` is a symfony plugin that provides a Doctrine base form class to allow easy
symfony 
may 2010 by groenewege
« earlier      

Copy this bookmark:



description:


tags: