Skip to content

Commit

Permalink
add missing files
Browse files Browse the repository at this point in the history
  • Loading branch information
wkpark committed Apr 7, 2008
1 parent 0fd7821 commit aaa6d0a
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 0 deletions.
9 changes: 9 additions & 0 deletions theme/plugin/BBS/default/list.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<table class='bbs' cellspacing='1' cellpadding='2'>
<col width='3%' class='num' /><col width='1%' class='check' /><col width='63%' class='title' /><col width='14%' /><col width='13%' /><col width='7%' class='hit' />
<thead><tr><th><?php echo _("no")?></th><th>C</th><th><?php echo _("Title")?></th><th><?php echo _("Name")?></th><th><?php echo _("Date")?></th><th><?php echo _("Hit")?></th></tr><thead>
<tbody>
<?php if(!empty($item)):foreach($item as $i):?>
<tr><td> <?php echo $i["num"]?> </td><td> <?php echo $i["check"]?> </td> <td><?php echo $i["subject"]?> </td><td><?php echo $i["name"]?></td><td><?php echo $i["date"]?></td><td><?php echo $i["hit"]?></td></tr>
<?php endforeach;endif;?>
</tbody>
</table>
3 changes: 3 additions & 0 deletions theme/plugin/BBS/default/theme.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<?php
$compat=1;
?>
9 changes: 9 additions & 0 deletions theme/plugin/BBS/default_tpl/list.tpl
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<table class='bbs' cellspacing='1' cellpadding='2'>
<col width='3%' class='num' /><col width='1%' class='check' /><col width='63%' class='title' /><col width='14%' /><col width='13%' /><col width='7%' class='hit' />
<thead><tr><th>{=_("no")}</th><th>C</th><th>{=_("Title")}</th><th>{=_("Name")}</th><th>{=_("Date")}</th><th>{=_("Hit")}</th></tr><thead>
<tbody>
<!--{@ item}-->
<tr><td> {item.num} </td><td> {item.check} </td> <td>{item.subject} </td><td>{item.name}</td><td>{item.date}</td><td>{item.hit}</td></tr>
<!--{/}-->
</tbody>
</table>

0 comments on commit aaa6d0a

Please sign in to comment.