123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212 |
- <?php
- /* For licensing terms, see /license.txt */
- use Symfony\Component\Finder\Finder;
- /**
- * Class MailTemplateManager.
- */
- class MailTemplateManager extends Model
- {
- public $columns = [
- 'id',
- 'name',
- 'template',
- 'type',
- 'system',
- 'url_id',
- 'default_template',
- 'created_at',
- 'updated_at',
- 'author_id',
- ];
- public function __construct()
- {
- parent::__construct();
- $this->table = 'mail_template';
- }
- /**
- * @return int
- */
- public function get_count()
- {
- $row = Database::select(
- 'count(*) as count',
- $this->table,
- ['where' => ['url_id = ? ' => api_get_current_access_url_id()]],
- 'first'
- );
- return $row['count'];
- }
- /**
- * Displays the title + grid.
- *
- * @return string html code
- */
- public function display()
- {
- // Action links
- $html = '<div class="actions" style="margin-bottom:20px">';
- $html .= '<a href="'.api_get_path(WEB_CODE_PATH).'admin">'.
- Display::return_icon(
- 'back.png',
- get_lang('Back'),
- '',
- '32'
- )
- .'</a>';
- $html .= '<a href="'.api_get_self().'?action=add">'.
- Display::return_icon(
- 'add.png',
- get_lang('Add'),
- '',
- '32'
- ).'</a>';
- $html .= '</div>';
- $html .= Display::grid_html('mail_template');
- return $html;
- }
- /**
- * Returns a Form validator Obj.
- *
- * @param string $url
- * @param string $action
- *
- * @return FormValidator
- */
- public function returnForm($url, $action = 'add')
- {
- $form = new FormValidator('template', 'post', $url);
- // Setting the form elements
- $header = get_lang('Add');
- if ($action === 'edit') {
- $header = get_lang('Edit');
- }
- $id = isset($_GET['id']) ? (int) $_GET['id'] : '';
- $form->addElement('header', '', $header);
- $form->addElement('hidden', 'id', $id);
- $form->addElement(
- 'text',
- 'name',
- get_lang('Name'),
- ['size' => '70', 'id' => 'name']
- );
- /*$form->addHtmlEditor(
- 'email_template',
- get_lang('Template'),
- false,
- false,
- [
- 'ToolbarSet' => 'Careers',
- 'Width' => '100%',
- 'Height' => '250',
- ]
- );*/
- $form->addTextarea(
- 'email_template',
- get_lang('Template')
- );
- $finder = new Finder();
- $files = $finder
- ->files()
- ->in(api_get_path(SYS_CODE_PATH).'template/default/mail')
- ->sort(
- function ($a, $b) {
- return strcmp($a->getRealpath(), $b->getRealpath());
- }
- );
- $options = [];
- /** @var SplFileInfo $file */
- foreach ($files as $file) {
- $options[$file->getFilename()] = $file->getFilename();
- }
- $form->addSelect(
- 'type',
- get_lang('Type'),
- $options
- );
- $defaults = $this->get($id);
- if ($action === 'edit') {
- $form->addLabel(get_lang('Created at'), Display::dateToStringAgoAndLongDate($defaults['created_at']));
- $form->addLabel(get_lang('Updated at'), Display::dateToStringAgoAndLongDate($defaults['updated_at']));
- $form->addButtonSave(get_lang('Edit'), 'submit');
- } else {
- $form->addButtonCreate(get_lang('Add'), 'submit');
- }
- // Setting the defaults
- if (!empty($defaults)) {
- $defaults['email_template'] = $defaults['template'];
- }
- $form->setDefaults($defaults);
- // Setting the rules
- $form->addRule('name', get_lang('Required field'), 'required');
- return $form;
- }
- /**
- * @param int $id
- *
- * @return bool
- */
- public function setDefault($id)
- {
- $template = $this->get($id);
- if (empty($template)) {
- return false;
- }
- $type = $template['type'];
- $urlId = api_get_current_access_url_id();
- $sql = "UPDATE {$this->table} SET default_template = 0
- WHERE type = '$type' AND url_id = $urlId";
- Database::query($sql);
- $sql = "UPDATE {$this->table} SET default_template = 1
- WHERE id = $id";
- Database::query($sql);
- return true;
- }
- /**
- * @param int $templateId
- * @param array $userInfo
- *
- * @return string|false
- */
- public function parseTemplate($templateId, $userInfo)
- {
- $templateInfo = $this->get($templateId);
- if (!empty($templateInfo)) {
- $emailTemplate = $templateInfo['template'];
- $keys = array_keys($userInfo);
- foreach ($keys as $key) {
- $emailTemplate = str_replace("{{user.$key}}", $userInfo[$key], $emailTemplate);
- }
- $template = new Template();
- $template->twig->setLoader(new \Twig_Loader_String());
- $emailBody = $template->twig->render($emailTemplate);
- return $emailBody;
- }
- return false;
- }
- }
|