2011-04-18 12:04:55 +00:00
< ? php
2014-09-17 20:49:37 +00:00
/** @var $_ array */
/** @var $l OC_L10N */
2016-04-12 10:49:11 +00:00
/** @var $theme OC_Theme */
// @codeCoverageIgnoreStart
2012-09-07 13:22:01 +00:00
if ( ! isset ( $_ )) { //also provide standalone error page
2011-06-23 21:47:46 +00:00
require_once '../../lib/base.php' ;
2011-04-18 12:04:55 +00:00
2011-07-29 19:36:03 +00:00
$tmpl = new OC_Template ( '' , '404' , 'guest' );
2011-04-18 12:04:55 +00:00
$tmpl -> printPage ();
exit ;
}
2016-04-12 10:49:11 +00:00
// @codeCoverageIgnoreEnd
2011-04-18 12:04:55 +00:00
?>
2013-07-29 13:33:23 +00:00
< ? php if ( isset ( $_ [ 'content' ])) : ?>
< ? php print_unescaped ( $_ [ 'content' ]) ?>
< ? php else : ?>
< ul >
< li class = " error " >
2015-03-17 22:57:23 +00:00
< ? php p ( $l -> t ( 'File not found' )); ?> <br>
2014-09-17 20:49:37 +00:00
< p class = " hint " >< ? php p ( $l -> t ( 'The specified document has not been found on the server.' )); ?> </p>
2015-12-17 09:53:21 +00:00
< p class = " hint " >< a href = " <?php p( \ OC:: $server->getURLGenerator ()->linkTo('', 'index.php')) ?> " >< ? php p ( $l -> t ( 'You can click here to return to %s.' , array ( $theme -> getName ()))); ?> </a></p>
2013-07-29 13:33:23 +00:00
</ li >
</ ul >
< ? php endif ; ?>