__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ 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\TemplateParserBase;
use WP_Post;
defined( 'ABSPATH' ) || exit;
/**
* View class
*
* @package Modules/ImageCarousel
*/
class View extends AbstractView {
/**
* Get slider setting
*
* @return SliderSetting|Setting
*/
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();
$template = new TemplateParserBase( $setting );
$template->set_template( 'loop/image-carousel.php' );
$html = $this->start_wrapper_html();
foreach ( $setting->get_image_ids() as $id ) {
$_post = get_post( $id );
if ( ! $_post instanceof WP_Post ) {
continue;
}
$item = new Item( $_post );
$template->set_object( $item );
do_action( 'carousel_slider_image_gallery_loop', $_post );
$html .= $this->start_item_wrapper_html();
$html .= apply_filters( 'carousel_slider/loop/image-carousel', $template->render(), $item, $setting );
$html .= $this->end_item_wrapper_html() . PHP_EOL;
}
$html .= $this->end_wrapper_html();
return apply_filters( 'carousel_slider_gallery_images_carousel', $html );
}
}
| 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 |
|