Actions

Source Code of This Project

/apps/frontend/modules/source/templates/_colOne.php

<script type="text/javascript">
    //<![CDATA[
    $(function(){
        $('#hierarchySourceCode').menu({
            content: $('#hierarchySourceCode').next().html(),
            backLink: false
        });
    });
    //]]>
</script>
<div id="logo">
    <h1><?php echo get_response_meta('title') ?></h1>
    <h2><?php echo get_response_meta('description') ?></h2>
</div>

<div class="box">
    <h3 id="navigation">Navigation</h3>
    <ul class="bottom itemsNav">
        <li class="<?php echo ('search_system' == $sf_params->get('sources')) ? 'curr ui-corner-all' : '' ?>">
            <a href="<?php echo url_for('@source_index?sources=search_system') ?>" title="JS scrollSet">
                Search system
            </a>
        </li>
        <li class="first <?php echo ('dbuilder' == $sf_params->get('sources')) ? 'curr ui-corner-all' : '' ?>">
            <a href="<?php echo url_for('@source_index?sources=dbuilder') ?>" title="DBuilder">
                Doctrine query builder
            </a>
        </li>
        <li class="<?php echo ('tests' == $sf_params->get('sources')) ? 'curr ui-corner-all' : '' ?>">
            <a href="<?php echo url_for('@source_index?sources=tests') ?>" title="Functional and Unit testing">
                Functional and Unit tests
            </a>
        </li>
        <li class="<?php echo ('js_scrollset' == $sf_params->get('sources')) ? 'curr ui-corner-all' : '' ?>">
            <a href="<?php echo url_for('@source_index?sources=js_scrollset') ?>" title="JS scrollSet">
                JS ScrollSet
            </a>
        </li>
    </ul>
</div>

<div class="box">
    <h3>Actions</h3>
    <ul class="bottom">
        <li>
            <span class="fl mr2 icons iconDownload"></span>
            <a href="<?php echo url_for('@source_download') ?>" title="Download project">Download</a> source code
        </li>
        <li>
            <span class="fl mr2 icons iconBrowse"></span>
            <a href="#" id="hierarchySourceCode" title="Browse project">Browse</a> source code
            <div class="hidden">
                <ul>
                    <?php echo build_html_tree($filesProj) ?>
                </ul>
            </div>
        </li>
    </ul>
</div>