what is view.php?

Permalink
Could someone please tell me what view.php does. I know it appears to display some content, but why it it needed. here's an example;

<?php
defined('C5_EXECUTE') or die(_("Access Denied."));
$this->inc('elements/header.php'); ?>

<div class="rowcontainer">
<div class="fullcolumn">
<?php

print $innerContent;

?>
</div>
</div>

<?php $this->inc('elements/footer.php'); ?>

 
Mnkras replied on at Permalink Reply
Mnkras
its used to display singlepages such as the login 404 and custom ones
kappi replied on at Permalink Reply
Thanks for replying, it's appreciated.