PHP Classes

File: view/melis-cms-prospects/tool-prospects/render-tool-prospects-widget-num-prospects.phtml

Recommend this page to a friend!
  Classes of Fabrice Fesch   Melis CMS Prospects   view/melis-cms-prospects/tool-prospects/render-tool-prospects-widget-num-prospects.phtml   Download  
File: view/melis-cms-prospects/tool-prospects/render-tool-prospects-widget-num-prospects.phtml
Role: Example script
Content type: text/plain
Description: Example script
Class: Melis CMS Prospects
Melis CMS module to track business prospects
Author: By
Last change:
Date: 1 year ago
Size: 861 bytes
 

Contents

Class file image Download
<?php
    $id
= '';
   
$width = '12';
    if (!empty(
$this->zoneconfig['conf']['id']))
       
$id = ' id="'. $this->zoneconfig['conf']['id'] . '"';
    if (!empty(
$this->zoneconfig['conf']['width']))
       
$width = $this->zoneconfig['conf']['width'];
   
$data_melisKey = $this->melisKey;
?>
<div class="col-md-<?php echo $width ?> text-center" <?= $id; ?> data-melisKey='<?= $data_melisKey; ?>'>
    <div class="widget widget-inverse text-center">
        <div class="widget-head border-none">
            <h3 class="heading prospectHeaderWidget"><?= $this->translate('tr_melistoolprospects_tool_prospects_header_num_indicators'); ?></h3>
        </div>
        <div class="widget-body padding-none">
            <div class="innerLR half">
                <div class="separator bottom"></div>
                <p class="lead"><span class="text-large text-regular"><?php echo $this->numPropects?></span></p>
            </div>
        </div>
    </div>
</div>