* For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Clastic\TextBundle\Module; use Clastic\NodeBundle\Module\NodeModuleInterface; /** * @author Dries De Peuter */ class TextModule implements NodeModuleInterface { /** * The name of the module. * * @return string */ public function getName() { return 'Text'; } /** * The name of the module. * * @return string */ public function getIdentifier() { return 'text'; } /** * @return string */ public function getEntityName() { return 'ClasticTextBundle:Text'; } /** * @return string|bool */ public function getDetailTemplate() { return 'ClasticTextBundle:Front:detail.html.twig'; } }