View file application/modules/Core/views/scripts/admin-banners/index.tpl

File size: 3.37Kb
<?php
/**
* SocialEngine
*
* @category   Application_Core
* @package    Core
* @copyright  Copyright 2006-2020 Webligo Developments
* @license    http://www.socialengine.com/license/
* @version    $Id: index.tpl 9747 2012-07-26 02:08:08Z john $
* @author     John
*/
?>
<div class="admin_common_top_section">
  <h2 class="page_heading"><?php echo $this->translate("Manage Banners") ?></h2>
  <p>
    <?php echo $this->translate("CORE_VIEWS_SCRIPTS_ADMINBANNERS_INDEX_DESCRIPTION") ?>
    <?php
    $settings = Engine_Api::_()->getApi('settings', 'core');
    if( $settings->getSetting('user.support.links', 0) == 1 ) : ?>
        <br> More Info: <a href="https://community.socialengine.com/blogs/597/67/banner-manager" target="_blank">KB Article</a>
    <?php endif; ?>
  </p>
</div>  
<div>
    <?php echo $this->htmlLink(array('action' => 'create', 'reset' => false),
    $this->translate("Create New Banner"), array(
    'class' => 'admin_create_btn',
    )) ?>
</div>
<div class='admin_results'>
   <div>
    <?php $count = $this->paginator->getTotalItemCount() ?>
    <?php echo $this->translate(array("%s banner found", "%s banners found", $count), $count) ?>
  </div>
  <div>
    <?php echo $this->paginationControl($this->paginator); ?>
  </div>
</div>
<?php if( engine_count($this->paginator) ): ?>
<table class='admin_table admin_responsive_table'>
    <thead>
        <tr>
            <th style="width: 1%;">
                <?php echo $this->translate("ID") ?>
            </th>
            <th>
                <?php echo $this->translate("Title") ?>
            </th>
            <th>
                <?php echo $this->translate("CTA Label") ?>
            </th>
            <th style="width: 150px;">
                <?php echo $this->translate("Options") ?>
            </th>
        </tr>
    </thead>
    <tbody>
        <?php foreach( $this->paginator as $item ): ?>
        <tr>
            <td data-label="ID"><?php echo $item->banner_id ?></td>
            <td data-label="<?php echo $this->translate("Title") ?>" style="white-space: normal;"><?php echo $item->getTitle() ?></td>
            <td data-label="<?php echo $this->translate("CTA Label") ?>" style="white-space: normal;"><?php echo $item->getCTALabel() ? $item->getCTALabel() : '-' ?></td>
            <td class="admin_table_options">
                <a href='<?php echo $this->url(array('action' => 'edit', 'id' => $item->banner_id)) ?>'>
                   <?php echo $this->translate("edit") ?>
                </a> 
                |
                <a class='smoothbox' href='<?php echo $this->url(array('action' => 'preview', 'id' => $item->banner_id)) ?>'>
                   <?php echo $this->translate("preview") ?>
                </a>
                <?php if($item->custom): ?>
                |
                <a class='smoothbox' href='<?php echo $this->url(array('action' => 'delete', 'id' => $item->banner_id)) ?>'>
            
                   <?php echo $this->translate("delete") ?>
                </a>
                <?php endif; ?>
            </td>
        </tr>
        <?php endforeach; ?>
    </tbody>
</table>

<?php else:?>

<div class="tip">
    <span><?php echo $this->translate("There are no banners created.") ?></span>
</div>
<?php endif; ?>
<script type="application/javascript">
  scriptJquery('.core_admin_main_layout').parent().addClass('active');
  scriptJquery('.core_admin_main_layout_banners').addClass('active');
</script>