Server IP : 66.29.132.124 / Your IP : 3.148.112.15 Web Server : LiteSpeed System : Linux business141.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : wavevlvu ( 1524) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/wavevlvu/book24.ng/modules/Tour/Blocks/ |
Upload File : |
<?php namespace Modules\Tour\Blocks; use Modules\Media\Helpers\FileHelper; use Modules\Template\Blocks\BaseBlock; class Testimonial extends BaseBlock { function __construct() { $this->setOptions([ 'settings' => [ [ 'id' => 'title', 'type' => 'input', 'inputType' => 'text', 'label' => __('Title') ], [ 'id' => 'list_item', 'type' => 'listItem', 'label' => __('List Item(s)'), 'title_field' => 'title', 'settings' => [ [ 'id' => 'name', 'type' => 'input', 'inputType' => 'text', 'label' => __('Name') ], [ 'id' => 'desc', 'type' => 'textArea', 'label' => __('Desc') ], [ 'id' => 'number_star', 'type' => 'input', 'inputType' => 'number', 'label' => __('Number star') ], [ 'id' => 'avatar', 'type' => 'uploader', 'label' => __('Avatar Image') ], ] ], ], 'category'=>__("Other Block") ]); } public function getName() { return __('List Testimonial'); } public function content($model = []) { return view('Tour::frontend.blocks.testimonial.index', $model); } public function contentAPI($model = []){ if(!empty($model['list_item'])){ foreach ( $model['list_item'] as &$item ){ $item['avatar_url'] = FileHelper::url($item['avatar'], 'full'); } } return $model; } }