2011-08-21 13:14:57 +04:00
|
|
|
<div id="controls">
|
2013-01-14 23:30:28 +04:00
|
|
|
<?php if($_['admin']) { ?>
|
2012-12-14 17:41:09 +04:00
|
|
|
<a class="button newquestion <?php echo($_['style1']); ?>" href="<?php echo($_['url1']); ?>"><?php echo $l->t( 'User Documentation' ); ?></a>
|
2013-01-14 23:30:28 +04:00
|
|
|
<a class="button newquestion <?php echo($_['style2']); ?>" href="<?php echo($_['url2']); ?>"><?php echo $l->t( 'Administrator Documentation' ); ?></a>
|
2012-12-14 17:41:09 +04:00
|
|
|
<?php } ?>
|
2013-01-14 23:30:28 +04:00
|
|
|
<a class="button newquestion" href="http://owncloud.org/support" target="_blank"><?php echo $l->t( 'Online Documentation' ); ?></a>
|
|
|
|
<a class="button newquestion" href="http://forum.owncloud.org" target="_blank"><?php echo $l->t( 'Forum' ); ?></a>
|
|
|
|
<?php if($_['admin']) { ?>
|
2012-12-14 17:41:09 +04:00
|
|
|
<a class="button newquestion" href="https://github.com/owncloud/core/issues" target="_blank"><?php echo $l->t( 'Bugtracker' ); ?></a>
|
|
|
|
<?php } ?>
|
2013-01-14 23:30:28 +04:00
|
|
|
<a class="button newquestion" href="http://owncloud.com" target="_blank"><?php echo $l->t( 'Commercial Support' ); ?></a>
|
2012-12-13 01:41:12 +04:00
|
|
|
</div>
|
|
|
|
<br /><br />
|
|
|
|
<iframe src="<?php echo($_['url']); ?>" width="100%" id="ifm" ></iframe>
|
|
|
|
|
|
|
|
|
|
|
|
<script language="JavaScript">
|
|
|
|
<!--
|
|
|
|
|
|
|
|
function pageY(elem) {
|
2013-01-14 23:30:28 +04:00
|
|
|
return elem.offsetParent ? (elem.offsetTop + pageY(elem.offsetParent)) : elem.offsetTop;
|
2012-12-13 01:41:12 +04:00
|
|
|
}
|
|
|
|
var buffer = 5; //scroll bar buffer
|
|
|
|
function resizeIframe() {
|
2013-01-14 23:30:28 +04:00
|
|
|
var height = document.documentElement.clientHeight;
|
|
|
|
height -= pageY(document.getElementById('ifm'))+ buffer ;
|
|
|
|
height = (height < 0) ? 0 : height;
|
|
|
|
document.getElementById('ifm').style.height = height + 'px';
|
2012-12-13 01:41:12 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
document.getElementById('ifm').onload=resizeIframe;
|
|
|
|
window.onresize = resizeIframe;
|
|
|
|
|
|
|
|
//-->
|
|
|
|
</script>
|