* @package WB * @subpackage content */ /** * Load required class */ WBClass::load('WBContent' , 'WBContent_TableEditor'); /** * Content component: TableEditor_Testimonial * * @version 0.2.0 * @package WB * @subpackage content */ class WBContent_TableEditor_Testimonial extends WBContent_TableEditor { const TABLE_TESTIMONIAL = 'testimonial'; /** * 2nd constructor * * Reset template folder */ protected function init() { parent::init(); $this->config['table'] = self::TABLE_TESTIMONIAL; $this->config['tmplDir'] = 'TableEditor'; $this->config['translator'] = 'auto'; } }