Skip to content

Commit

Permalink
Issue techjoomla#48 chore: Log Email details in DB table - Tj Notific…
Browse files Browse the repository at this point in the history
…ation
  • Loading branch information
punambaravkar committed Jun 21, 2019
1 parent 415c61f commit d06892e
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 21 deletions.
18 changes: 9 additions & 9 deletions src/com_tjnotifications/admin/views/logs/tmpl/body.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@
$logTable->load(array('id' => $logId));
}
?>
<div>
<h4 class="modal-title"><?php echo
JText::_("COM_TJNOTIFICATIONS_FIELD_EMAIL_BODY_LABEL");
?></h4>
</div>
<div class="col-xs-12">
<p><?php echo $logTable->body; ?>
</p>
</div>
<div class="container">
<h4 class="modal-title">
<?php echo JText::_("COM_TJNOTIFICATIONS_FIELD_EMAIL_BODY_LABEL");
?>
</h4>
<div class="col-xs-12">
<p><?php echo $logTable->body; ?>
</p>
</div>
</div>
19 changes: 10 additions & 9 deletions src/com_tjnotifications/admin/views/logs/tmpl/param.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,14 @@
$logTable->load(array('id' => $logId));
}
?>
<div>
<h4 class="modal-title"><?php echo
JText::_("COM_TJNOTIFICATIONS_VIEW_PARAMS_POPUP");
?></h4>
</div>
<div class="col-xs-12">
<p><?php echo $logTable->params; ?>
</p>
</div>
<div class="container">
<h4 class="modal-title">
<?php echo JText::_("COM_TJNOTIFICATIONS_FIELD_EMAIL_BODY_LABEL");
?>
</h4>
<div class="col-xs-12">
<p><?php echo $logTable->params; ?>
</p>
</div>
</div>

4 changes: 1 addition & 3 deletions src/com_tjnotifications/admin/views/logs/view.html.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,7 @@ public function display($tpl = null)
*/
protected function addToolBar()
{
$title = JText::_('COM_TJNOTIFICATIONS_LOGS');

JToolBarHelper::title($title, 'log');
JToolBarHelper::title(JText::_('COM_TJNOTIFICATIONS_LOGS'), 'log');

if ($this->canDo->get('core.export'))
{
Expand Down

0 comments on commit d06892e

Please sign in to comment.