File "ClientFeedBack.php"
Full Path: /home/bettaeza/flyinsyria.com/Template/Blocks/ClientFeedBack.php
File size: 2.1 KB
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Modules\Template\Blocks;
use Modules\Media\Helpers\FileHelper;
use Modules\Template\Blocks\BaseBlock;
class ClientFeedBack extends BaseBlock
{
public function getName()
{
return __('Client Feedback');
}
public function getOptions()
{
return [
'settings' => [
[
'id' => 'image_id',
'type' => 'uploader',
'label' => __('Featured Image')
],
[
'id' => 'list_item',
'type' => 'listItem',
'label' => __('List Item(s)'),
'title_field' => 'title',
'settings' => [
[
'id' => 'title',
'type' => 'input',
'inputType' => 'text',
'label' => __('Title')
],
[
'id' => 'sub_title',
'type' => 'input',
'inputType' => 'text',
'label' => __('Sub Title')
],
[
'id' => 'desc',
'type' => 'textArea',
'label' => __('Desc')
],
]
],
],
'category'=>__("Other Block")
];
}
public function content($model = [])
{
if(!empty($model['image_id'])){
$model['image_url'] = get_file_url($model['image_id'] , 'full');
}
return $this->view('Template::frontend.blocks.client-feedback.index', $model);
}
public function contentAPI($model = []){
if(!empty($model['image_id'])){
$model['image_url'] = get_file_url($model['image_id'] , 'full');
}
return $model;
}
}