Файловый менеджер - Редактировать - /home/lmsyaran/public_html/libraries/smartslider3/src/SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBarFrontend.php
Назад
<?php namespace Nextend\SmartSlider3Pro\Renderable\Item\ProgressBar; use Nextend\Framework\Parser\Color; use Nextend\Framework\View\Html; use Nextend\SmartSlider3\Renderable\AbstractRenderableOwner; use Nextend\SmartSlider3\Renderable\Item\AbstractItemFrontend; class ItemProgressBarFrontend extends AbstractItemFrontend { public function render() { return $this->getHtml(); } public function renderAdminTemplate() { return $this->getHtml(); } private function getHtml() { $owner = $this->layer->getOwner(); $this->loadResources($owner); $value = intval($this->data->get('value')); $min = min(0, $value); $startvalue = max(intval($this->data->get('startvalue')), $min); $total = max(max(intval($this->data->get('total')), $startvalue), $value); $duration = max(0, intval($this->data->get('animationduration'))); if ($total != $min) { $toPercent = (min($value, $total) - $min) / ($total - $min); if ($duration == 0) { // We do not have animation $fromPercent = $toPercent; } else { $fromPercent = (min($startvalue, $total) - $min) / ($total - $min); } } else { $duration = 0; $fromPercent = $toPercent = 0; } $labelHTML = ''; $label = $owner->fill($this->data->get('label')); $placement = ''; if (!empty($label)) { $fontLabel = $owner->addFont($this->data->get('fontlabel'), 'simple'); $labelHTML = Html::tag('div', array( 'class' => 'n2-ss-item-progressbar-label n2-ow ' . $fontLabel ), $label); $placement = $this->data->get('labelplacement'); } $html = ''; if ($placement == 'before') { $html .= $labelHTML; } $html .= Html::openTag('div', array( 'id' => $this->id, 'class' => 'n2-ow n2-ss-item-progressbar', 'style' => 'background-color: ' . Color::colorToRGBA($this->data->get('color')) . ';' )); $html .= Html::openTag('div', array( 'class' => 'n2-ow n2-ss-item-progressbar-inner', 'style' => 'width:' . $fromPercent * 100 . '%;background-color: ' . Color::colorToRGBA($this->data->get('color2')) . ';' )); if ($placement == 'over') { $html .= $labelHTML; } $font = $owner->addFont($this->data->get('font'), 'simple'); $pre = $this->data->get('pre'); $post = $this->data->get('post'); $html .= Html::tag('div', array( 'class' => 'n2-ss-item-progressbar-counting n2-ow ' . $font ), $pre . round($min + $fromPercent * ($total - $min)) . $post); $html .= '</div>'; $html .= '</div>'; if ($placement == 'after') { $html .= $labelHTML; } $jsData = array( 'name' => 'progressbar', 'pre' => $pre, 'post' => $post, 'fromPercent' => $fromPercent, 'toPercent' => $toPercent, 'duration' => $duration, 'delay' => $this->data->get('animationdelay'), 'min' => $min, 'total' => $total, 'counting' => '.n2-ss-item-progressbar-counting', 'display' => '.n2-ss-item-progressbar-inner', 'displayMode' => 'width' ); if ($this->isEditor && $owner->underEdit) { $owner->addScript('new _N2.CounterItemAdmin(this, "' . $this->id . '", ' . json_encode($jsData) . ');'); } else { $owner->addScript('new _N2.FrontendItemCounter(this, "' . $this->id . '", ' . json_encode($jsData) . ');'); } return Html::tag('div', array( 'class' => 'n2-ss-item-content n2-ow' ), $html); } /** * @param $owner AbstractRenderableOwner */ public function loadResources($owner) { $owner->addLess(self::getAssetsPath() . "/progressbar.n2less", array( "sliderid" => $owner->getElementID() )); } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.33 | Генерация страницы: 0.01 |
proxy
|
phpinfo
|
Настройка