Files
EasySoft-ZenTaoPMS/module/my/view/blockstories.html.php
wangchunsheng e3f0659ea7 * adjust menu items.
* adjust menu order according to the user's role.
2012-12-13 08:44:08 +00:00

15 lines
561 B
PHP

<div class='block linkbox2'>
<table class='table-1 fixed colored'>
<caption>
<div class='f-left'><span class='icon-story'>&nbsp;</span> <?php echo $lang->my->story;?></div>
<div class='f-right'><?php echo html::a($this->createLink('my', 'story'), $lang->more . "<span class='icon-more'></span>");?></div>
</caption>
<?php
foreach($stories as $story)
{
echo "<tr><td class='nobr'>" . "#$story->id " . html::a($this->createLink('story', 'view', "id=$story->id"), $story->title) . "</td><td width='5'></td></tr>";
}
?>
</table>
</div>