/home/techb158/immovalet.com/vendor/botble/theme/src/Providers
Edit: /home/techb158/immovalet.com/vendor/botble/theme/src/Providers/HookServiceProvider.php (8413B)
setArgs(['debug' => config('app.debug')])
->setSection([
'title' => trans('packages/theme::theme.theme_option_general'),
'desc' => trans('packages/theme::theme.theme_option_general_description'),
'priority' => 0,
'id' => 'opt-text-subsection-general',
'subsection' => true,
'icon' => 'fa fa-home',
'fields' => [
[
'id' => 'site_title',
'type' => 'text',
'label' => trans('core/setting::setting.general.site_title'),
'attributes' => [
'name' => 'site_title',
'value' => null,
'options' => [
'class' => 'form-control',
'placeholder' => trans('core/setting::setting.general.site_title'),
'data-counter' => 255,
],
],
],
[
'id' => 'show_site_name',
'section_id' => 'opt-text-subsection-general',
'type' => 'select',
'label' => trans('core/setting::setting.general.show_site_name'),
'attributes' => [
'name' => 'show_site_name',
'list' => [
'0' => 'No',
'1' => 'Yes',
],
'value' => '0',
'options' => [
'class' => 'form-control',
],
],
],
[
'id' => 'seo_title',
'type' => 'text',
'label' => trans('core/setting::setting.general.seo_title'),
'attributes' => [
'name' => 'seo_title',
'value' => null,
'options' => [
'class' => 'form-control',
'placeholder' => trans('core/setting::setting.general.seo_title'),
'data-counter' => 120,
],
],
],
[
'id' => 'seo_description',
'type' => 'textarea',
'label' => trans('core/setting::setting.general.seo_description'),
'attributes' => [
'name' => 'seo_description',
'value' => null,
'options' => [
'class' => 'form-control',
'rows' => 4,
],
],
],
[
'id' => 'seo_og_image',
'type' => 'mediaImage',
'label' => trans('packages/theme::theme.theme_option_seo_open_graph_image'),
'attributes' => [
'name' => 'seo_og_image',
'value' => null,
],
],
],
])
->setSection([
'title' => trans('packages/theme::theme.theme_option_logo'),
'desc' => trans('packages/theme::theme.theme_option_logo'),
'priority' => 0,
'id' => 'opt-text-subsection-logo',
'subsection' => true,
'icon' => 'fa fa-image',
'fields' => [
[
'id' => 'favicon',
'type' => 'mediaImage',
'label' => trans('packages/theme::theme.theme_option_favicon'),
'attributes' => [
'name' => 'favicon',
'value' => null,
],
],
[
'id' => 'logo',
'type' => 'mediaImage',
'label' => trans('packages/theme::theme.theme_option_logo'),
'attributes' => [
'name' => 'logo',
'value' => null,
],
],
],
]);
add_shortcode('media', null, null, function ($shortcode) {
$url = rtrim($shortcode->url, '/');
$iframe = null;
if (preg_match('/^((?:https?:)?\/\/)?((?:www|m)\.)?((?:youtube\.com|youtu.be))(\/(?:[\w\-]+\?v=|embed\/|v\/)?)([\w\-]+)(\S+)?$/',
$url)) {
if (str_contains($url, 'watch?v=')) {
$url = str_replace('watch?v=', 'embed/', $url);
} else {
$exploded = explode('/', $url);
if (count($exploded) > 1) {
$url = 'https://www.youtube.com/embed/' . Arr::last($exploded);
}
}
$iframe = Html::tag('iframe', '', [
'class' => 'embed-responsive-item',
'allowfullscreen' => true,
'frameborder' => 0,
'height' => 315,
'width' => 420,
'src' => $url,
])->toHtml();
}
if (preg_match('/(https?:\/\/)?(www\.)?(player\.)?vimeo\.com\/([a-z]*\/)*([0-9]{6,11})[?]?.*/', $url,
$matches)) {
if (isset($matches[5])) {
$videoId = $matches[5];
$iframe = Html::tag('iframe', '', [
'class' => 'embed-responsive-item',
'height' => 315,
'width' => 420,
'allow' => 'autoplay; fullscreen; picture-in-picture',
'src' => 'https://player.vimeo.com/video/' . $videoId,
])->toHtml();
}
}
if ($iframe) {
return Html::tag('div', $iframe, ['class' => 'embed-responsive embed-responsive-16by9 mb30'])
->toHtml();
}
return null;
});
}
/**
* @param array $widgets
* @param Collection $widgetSettings
* @return array
* @throws Throwable
*/
public function addStatsWidgets($widgets, $widgetSettings)
{
$themes = count(scan_folder(theme_path()));
return (new DashboardWidgetInstance)
->setType('stats')
->setPermission('theme.index')
->setTitle(trans('packages/theme::theme.theme'))
->setKey('widget_total_themes')
->setIcon('fa fa-paint-brush')
->setColor('#e7505a')
->setStatsTotal($themes)
->setRoute(route('theme.index'))
->init($widgets, $widgetSettings);
}
/**
* @param null $data
* @return string
* @throws Throwable
*/
public function addSetting($data = null)
{
return $data . view('packages/theme::setting')->render();
}
}