Symfony include_component() with components from a plugin
- by Chris T
All I'd like to do is use include_component to call a component from a plugin that I'm developing
<?php
#/plugins/fooPlugin/modules/barModule/actions/components.class.php
class barModuleComponents extends sfComponents{
/**
* Constructor
*/
function __construct(){
}
function executeHello(){
}
}…