Actions

Source Code of This Project

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

<div id="logo">
    <h1><?php echo get_response_meta('title') ?></h1>
    <h2><?php echo get_response_meta('description') ?></h2>
</div>

<?php if (!empty($foundRendered)): ?>
    <div class="box">
        <h3 id="navigation">Navigation</h3>
        <ul class="bottom itemsNav">
            <?php $num = 0; ?>
            <?php foreach ($foundData as $compositeItem): ?>
                <?php if ($compositeItem): ?>
                    <?php foreach ($compositeItem as $data): ?>
                        <?php $selected = ((true == $sf_context->get('scrollSet')) and $num++ == 0) ? 'first curr ui-corner-all' : '' ?>
                        <li class="<?php echo $selected ?>" >
                        <?php if (true == $sf_context->get('scrollSet')): ?>
                            <?php echo truncate_text(strip_tags($data['title']), 60, '...', true) ?>
                        <?php else: ?>
                            <a href="#<?php echo $data['title']?>"><?php echo truncate_text(strip_tags($data['title']), 60, '...', true) ?></a>
                        <?php endif; ?>
                        </li>
                    <?php endforeach; ?>
                <?php endif; ?>
            <?php endforeach; ?>
        </ul>
    </div>

    <div class="box">
        <h3>Settings</h3>
        <ul class="bottom">
            <li><?php include_partial('global/scrollCheckBox') ?></li>
        </ul>
    </div>
<?php endif; ?>