don't need message log template
updated wobject code skeleton to match 7.0 api
This commit is contained in:
parent
738f8134ba
commit
da84d063c7
2 changed files with 1 additions and 63 deletions
|
|
@ -1,55 +0,0 @@
|
|||
#PBtmpl0000000000000050
|
||||
<tmpl_var displayTitle>
|
||||
|
||||
<table width="100%" cellspacing="1" cellpadding="2" border="0">
|
||||
<tr>
|
||||
<td class="tableHeader">
|
||||
<tmpl_var message.subject.label>
|
||||
</td>
|
||||
<td class="tableHeader">
|
||||
<tmpl_var message.status.label>
|
||||
</td>
|
||||
<td class="tableHeader">
|
||||
<tmpl_var message.dateOfEntry.label>
|
||||
</td>
|
||||
</tr>
|
||||
<tmpl_if message.noresults>
|
||||
<tr>
|
||||
<td class="tableData">
|
||||
<tmpl_var message.noresults>
|
||||
</td>
|
||||
<td class="tableData">
|
||||
|
||||
</td>
|
||||
<td class="tableData">
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
<tmpl_else>
|
||||
<tmpl_loop message.loop>
|
||||
<tr>
|
||||
<td class="tableData">
|
||||
<tmpl_var message.subject>
|
||||
</td>
|
||||
<td class="tableData">
|
||||
<tmpl_var message.status>
|
||||
</td>
|
||||
<td class="tableData">
|
||||
<tmpl_var message.dateOfEntry>
|
||||
</td>
|
||||
</tr>
|
||||
</tmpl_loop>
|
||||
</tmpl_if>
|
||||
</table>
|
||||
<tmpl_if message.multiplePages>
|
||||
<div class="pagination">
|
||||
<tmpl_var message.previousPage> · <tmpl_var message.pageList> · <tmpl_var message.nextPage>
|
||||
</div>
|
||||
</tmpl_if>
|
||||
<div class="accountOptions">
|
||||
<ul>
|
||||
<tmpl_loop message.accountOptions>
|
||||
<li><tmpl_var options.display></li>
|
||||
</tmpl_loop>
|
||||
</ul>
|
||||
</div>
|
||||
|
|
@ -14,16 +14,9 @@ $VERSION = "1.0.0";
|
|||
|
||||
use strict;
|
||||
use Tie::IxHash;
|
||||
use WebGUI::ErrorHandler;
|
||||
use WebGUI::International;
|
||||
use WebGUI::Privilege;
|
||||
use WebGUI::Session;
|
||||
use WebGUI::SQL;
|
||||
use WebGUI::URL;
|
||||
use WebGUI::Utility;
|
||||
use WebGUI::Asset::Wobject;
|
||||
|
||||
our @ISA = qw(WebGUI::Asset::Wobject);
|
||||
use base 'WebGUI::Asset::Wobject';
|
||||
|
||||
#-------------------------------------------------------------------
|
||||
=head2 definition
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue