Skip to content

Instantly share code, notes, and snippets.

@khepin
Created December 14, 2010 10:04
Show Gist options
  • Save khepin/740222 to your computer and use it in GitHub Desktop.
Save khepin/740222 to your computer and use it in GitHub Desktop.
<?php
require_once dirname(__FILE__).'/../lib/vendor/symfony/lib/autoload/sfCoreAutoload.class.php';
sfCoreAutoload::register();
class ProjectConfiguration extends sfProjectConfiguration
{
public function setup()
{
$this->enablePlugins('sfDoctrinePlugin');
$this->dispatcher->connect('view.configure_format', array('MyExcel', 'setFormat'));
$this->dispatcher->connect('response.filter_content', array('MyExcel', 'setContent'));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment