Server IP : 184.154.167.98 / Your IP : 3.133.150.11 Web Server : Apache System : Linux pink.dnsnetservice.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 User : puertode ( 1767) PHP Version : 8.2.26 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/puertode/public_html/mesa/include/staff/ |
Upload File : |
<?php $info=Format::htmlchars(($errors && $_POST)?$_POST:$_REQUEST, true); if (is_a($template, 'EmailTemplateGroup')) { // New template implementation $id = 0; $tpl_id = $template->getId(); $name = $template->getName(); $group = $template; $msgtemplates = $template::$all_names; $selected = in_array($_REQUEST['code_name'], array_keys($msgtemplates)) ? $_REQUEST['code_name'] : ''; $action = 'implement'; $extras = array('code_name'=>$selected, 'tpl_id'=>$tpl_id); $desc = $msgtemplates[$selected]; // Attempt to lookup the default data if it is defined $default = @$template->getMsgTemplate($selected); if ($default) { $info['subject'] = $default->getSubject(); $info['body'] = Format::viewableImages($default->getBody()); } } else { // Template edit $id = $template->getId(); $tpl_id = $template->getTplId(); $name = $template->getGroup()->getName(); $desc = $template->getDescription(); $group = $template->getGroup(); $selected = $template->getCodeName(); $action = 'updatetpl'; $extras = array(); $msgtemplates=$group::$all_names; $info=array_merge(array('subject'=>$template->getSubject(), 'body'=>$template->getBodyWithImages()),$info); } $tpl=$msgtemplates[$selected]; ?> <form method="get" action="templates.php?"> <h2> <div class="pull-right"> <span style="font-size:10pt"><?php echo __('Viewing'); ?>:</span> <select id="tpl_options" name="id" style="width:250px;"> <?php $impl = $group->getTemplates(); $current_group = false; $_tpls = $group::$all_names; $_groups = $group::$all_groups; uasort($_tpls, function($a,$b) { return strcmp($a['group'].$a['name'], $b['group'].$b['name']); }); foreach($_tpls as $cn=>$nfo) { if (!$nfo['name']) continue; if (!$current_group || $current_group != $nfo['group']) { if ($current_group) echo "</optgroup>"; $current_group = $nfo['group']; ?> <optgroup label="<?php echo isset($_groups[$current_group]) ? __($_groups[$current_group]) : $current_group; ?>"> <?php } $sel=($selected==$cn)?'selected="selected"':''; echo sprintf('<option value="%s" %s>%s</option>', isset($impl[$cn]) ? $impl[$cn]->getId() : $cn, $sel,__($nfo['name'])); } if ($current_group) echo "</optgroup>"; ?> </select> </div> <span><?php echo __('Email Template Set'); ?></span> <small> — <a href="templates.php?tpl_id=<?php echo $tpl_id; ?>"><?php echo $name; ?></a></small> </h2> <input type="hidden" name="a" value="manage"> <input type="hidden" name="tpl_id" value="<?php echo $tpl_id; ?>"> </form> <hr/> <form action="templates.php?id=<?php echo $id; ?>&a=manage" method="post" class="save"> <?php csrf_token(); ?> <?php foreach ($extras as $k=>$v) { ?> <input type="hidden" name="<?php echo $k; ?>" value="<?php echo Format::htmlchars($v); ?>" /> <?php } ?> <input type="hidden" name="id" value="<?php echo $id; ?>"> <input type="hidden" name="a" value="manage"> <input type="hidden" name="do" value="<?php echo $action; ?>"> <div style="border:1px solid #ccc;background:#f0f0f0;padding:5px 10px; margin:10px 0;"> <h3 style="font-size:12pt;margin:0"><?php echo __($desc['name']); ?> <i class="help-tip icon-question-sign" data-content="<?php echo Format::htmlchars(__($desc['desc'])); ?>" data-title="<?php echo Format::htmlchars(__($desc['name'])); ?>"></i> <a style="font-size:10pt" class="tip pull-right" href="#ticket_variables.txt"> <i class="icon-tags"></i> <?php echo __('Supported Variables'); ?></a> </h3> <?php if ($errors) { ?> <font class="error"><?php echo $errors['subject']; ?> <?php echo $errors['body']; ?></font> <?php } ?> </div> <?php $invalid = array(); if ($template instanceof EmailTemplate) { if ($invalid = $template->getInvalidVariableUsage()) { $invalid = array_unique($invalid); ?> <div class="warning-banner"><?php echo sprintf( __('Some variables may not be a valid for this context. Please check for spelling errors and correct usage for %s.'), __('this template')); ?> <br/> <code><?php echo implode(', ', $invalid); ?></code> </div> <?php } } ?> <div style="padding-bottom:3px;" class="faded"><strong><?php echo __('Email Subject and Body'); ?>:</strong></div> <div id="toolbar"></div> <div id="save" style="padding-top:5px;"> <input type="text" name="subject" size="65" value="<?php echo $info['subject']; ?>" style="font-size:14pt;width:100%;box-sizing:border-box"> <div style="margin-bottom:0.5em;margin-top:0.5em"> </div> <input type="hidden" name="draft_id" value=""/> <textarea name="body" cols="21" rows="16" style="width:98%;" wrap="soft" data-root-context="<?php echo $selected; ?>" data-toolbar-external="#toolbar" class="richtext draft" <?php list($draft, $attrs) = Draft::getDraftAndDataAttrs('tpl.'.$selected, $tpl_id, $info['body']); echo $attrs; ?>><?php echo $draft ?: $info['body']; ?></textarea> </div> <p style="text-align:center"> <input class="button" type="submit" name="submit" value="<?php echo __('Save Changes'); ?>"> <input class="button" type="reset" name="reset" value="<?php echo __('Reset Changes'); ?>" onclick="javascript: setTimeout('location.reload()', 25);" /> <input class="button" type="button" name="cancel" value="<?php echo __('Cancel Changes'); ?>" onclick='window.location.href="templates.php?tpl_id=<?php echo $tpl_id; ?>"'> </p> </form>