Server IP : 66.29.132.124 / Your IP : 3.149.24.70 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\Template\Blocks\BaseBlock; use Modules\Location\Models\Location; use Modules\Media\Helpers\FileHelper; class CallToAction extends BaseBlock { function __construct() { $this->setOptions([ 'settings' => [ [ 'id' => 'title', 'type' => 'input', 'inputType' => 'text', 'label' => __('Title') ], [ 'id' => 'sub_title', 'type' => 'input', 'inputType' => 'text', 'label' => __('Sub Title') ], [ 'id' => 'link_title', 'type' => 'input', 'inputType' => 'text', 'label' => __('Title Link More') ], [ 'id' => 'link_more', 'type' => 'input', 'inputType' => 'text', 'label' => __('Link More') ], [ 'id' => 'style', 'type' => 'radios', 'label' => __('Style'), 'values' => [ [ 'value' => '', 'name' => __("Style Normal") ], [ 'value' => 'style_2', 'name' => __("Style 2") ], [ 'value' => 'style_3', 'name' => __("Style 3") ], ] ], [ 'id' => 'bg_color', 'type' => 'input', 'inputType' => 'text', 'label' => __('- Layout Normal: Background Color - get code in <a href="https://html-color-codes.info" target="_blank">https://html-color-codes.info</a>'), 'placeholder'=> "#f6b756", ], [ 'id' => 'bg_image', 'type' => 'uploader', 'label' => __('- Layout 2&3 : Background Image Uploader') ], ], 'category'=>__("Other Block") ]); } public function getName() { return __('Call To Action'); } public function content($model = []) { $model['style'] = $model['style'] ?? ""; if (!empty($model['bg_image'])) { $model['bg_image_url'] = FileHelper::url($model['bg_image'], 'full'); } return view('Tour::frontend.blocks.call-to-action.index', $model); } }