. */ /* */ /*************************************************************************************/ namespace Tinymce; use Propel\Runtime\Connection\ConnectionInterface; use Symfony\Component\Filesystem\Filesystem; use Thelia\Module\BaseModule; class Tinymce extends BaseModule { /** * YOU HAVE TO IMPLEMENT HERE ABSTRACT METHODD FROM BaseModule Class * Like install and destroy */ public function postActivation(ConnectionInterface $con = null) { $fs = new Filesystem(); $fs->mirror(__DIR__ . '/Resources/js/tinymce', THELIA_WEB_DIR . '/tinymce'); } }