__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
namespace CarouselSlider\Modules\ImageCarousel;
use CarouselSlider\Abstracts\AbstractView;
use CarouselSlider\Abstracts\SliderSetting;
use CarouselSlider\Supports\Validate;
use CarouselSlider\TemplateParserBase;
defined( 'ABSPATH' ) || exit;
/**
* UrlView class
*
* @package Modules/ImageCarousel
*/
class UrlView extends AbstractView {
/**
* Get slider setting
*
* @return SliderSetting
*/
public function get_slider_setting(): SliderSetting {
if ( ! $this->slider_setting instanceof SliderSetting ) {
$this->slider_setting = new Setting( $this->get_slider_id() );
}
return $this->slider_setting;
}
/**
* Render html content
*
* @inheritDoc
*/
public function render(): string {
$setting = $this->get_slider_setting();
$slider_id = $this->get_slider_id();
$images_urls = (array) get_post_meta( $slider_id, '_images_urls', true );
if ( count( $images_urls ) < 1 ) {
return '';
}
$template = new TemplateParserBase( $setting );
$template->set_template( 'loop/image-carousel-url.php' );
$html = $this->start_wrapper_html();
foreach ( $images_urls as $images_url ) {
$item = new ExternalImageItem( $images_url );
$template->set_object( $item );
$html .= $this->start_item_wrapper_html();
$html .= apply_filters( 'carousel_slider/loop/image-carousel-url', $template->render(), $item, $this->get_slider_setting() );
$html .= $this->end_item_wrapper_html();
}
$html .= $this->end_wrapper_html();
return apply_filters( 'carousel_slider_link_images_carousel', $html, $slider_id );
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Admin.php | File | 8.62 KB | 0775 |
|
| ExternalImageItem.php | File | 2.17 KB | 0775 |
|
| Item.php | File | 2.84 KB | 0775 |
|
| Module.php | File | 2.38 KB | 0775 |
|
| Setting.php | File | 2.31 KB | 0775 |
|
| Template.php | File | 1.58 KB | 0775 |
|
| TemplateUrl.php | File | 1.76 KB | 0775 |
|
| UrlView.php | File | 1.54 KB | 0775 |
|
| View.php | File | 1.46 KB | 0775 |
|