| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
- $extViewFile = $this->app->getModuleRoot() . 'ext/view/' . basename(__FILE__);
- if(file_exists($extViewFile))
- {
- include $extViewFile;
- return;
- }
- ?>
- <?php if(isset($action->objectType) and isset($action->action)):?>
- <?php if(!empty($action->comment)):?>
- <tr>
- <td style="padding:0px 10px 10px 10px; border: none;">
- <fieldset style="border: 1px solid #e5e5e5">
- <legend style="color: #114f8e"><?php echo $this->lang->comment?></legend>
- <div style="padding:5px;"><?php echo $action->comment?></div>
- </fieldset>
- </td>
- </tr>
- <?php endif;?>
- <tr>
- <td style='padding: 10px; background-color: #FFF0D5'>
- <?php if(empty($users)) $users = $this->loadModel('user')->getPairs('noletter');?>
- <?php $action->actor = zget($users, $action->actor);?>
- <?php $action->extra = zget($users, $action->extra);?>
- <span style='font-size: 16px; color: #F1A325'>●</span> <span><?php $this->action->printAction($action);?></span>
- </td>
- </tr>
- <?php if(!empty($action->history)):?>
- <tr>
- <td style='padding: 10px;'>
- <div><?php $this->action->printChanges($action->objectType, $action->objectID, $action->history, false);?></div>
- </td>
- </tr>
- <?php endif;?>
- <?php endif;?>
- </table>
- </td>
- </tr>
- </table>
- </body>
- </html><?php // close tags in mail.header.html.php ?>
|