diff options
Diffstat (limited to 'settings/templates/help.php')
-rw-r--r-- | settings/templates/help.php | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/settings/templates/help.php b/settings/templates/help.php index d44438add9b..8e54493764e 100644 --- a/settings/templates/help.php +++ b/settings/templates/help.php @@ -1,21 +1,23 @@ +<div id="controls"> + <a class="button newquestion" href="http://apps.owncloud.com/knowledgebase/editquestion.php?action=new" target="_blank"><?php echo $l->t( 'Ask a question' ); ?></a> + <?php + $url=OC_Helper::linkTo( "settings", "help.php" ).'?page='; + $pageNavi=OC_Util::getPageNavi($_['pagecount'],$_['page'],$url); + $pageNavi->printPage(); + ?> +</diV> <?php if(is_null($_["kbe"])):?> - <div class="personalblock"> + <div class="helpblock"> <p><?php echo $l->t('Problems connecting to help database.');?></p> <p><a href="http://apps.owncloud.com/kb"><?php echo $l->t('Go there manually.');?></a></p> </div> <?php else:?> <?php foreach($_["kbe"] as $kb): ?> - <div class="personalblock"> + <div class="helpblock"> <?php if($kb["preview1"] <> "") { echo('<img class="preview" src="'.$kb["preview1"].'" />'); } ?> <?php if($kb['detailpage']<>'') echo('<p><a target="_blank" href="'.$kb['detailpage'].'"><strong>'.$kb["name"].'</strong></a></p>');?> <p><?php echo $kb['description'];?></p> <?php if($kb['answer']<>'') echo('<p><strong>'.$l->t('Answer').':</strong><p>'.$kb['answer'].'</p>');?> </div> - <?php endforeach; ?> - - <a class="button newquestion" href="http://apps.owncloud.com/knowledgebase/editquestion.php?action=new" target="_blank"><?php echo $l->t( 'Ask a question' ); ?></a> - <?php - $url=OC_Helper::linkTo( "settings", "help.php" ).'?page='; - $pageNavi=OC_Util::getPageNavi($_['pagecount'],$_['page'],$url); - $pageNavi->printPage(); + <?php endforeach; endif?> |