PATH:
home
/
lab2454c
/
vaultchip.com
/
vendor
/
botble
/
revision
/
src
/
Providers
<?php namespace Botble\Revision\Providers; use Assets; use Botble\Base\Models\BaseModel; use Illuminate\Support\ServiceProvider; use Throwable; class HookServiceProvider extends ServiceProvider { public function boot() { add_filter(BASE_FILTER_REGISTER_CONTENT_TABS, [$this, 'addHistoryTab'], 55, 3); add_filter(BASE_FILTER_REGISTER_CONTENT_TAB_INSIDE, [$this, 'addHistoryContent'], 55, 3); } /** * @param string $tabs * @param BaseModel $data * @return string * @throws Throwable * @since 2.0 */ public function addHistoryTab($tabs, $data = null) { if (!empty($data) && $this->isSupported($data)) { Assets::addScriptsDirectly([ '/vendor/core/packages/revision/js/html-diff.js', '/vendor/core/packages/revision/js/revision.js', ]) ->addStylesDirectly('/vendor/core/packages/revision/css/revision.css'); return $tabs . view('packages/revision::history-tab')->render(); } return $tabs; } /** * @param string|BaseModel $model * @return bool */ protected function isSupported($model): bool { if (is_object($model)) { $model = get_class($model); } return in_array($model, config('packages.revision.general.supported', [])); } /** * @param string $tabs * @param BaseModel $data * @return string * @throws Throwable * @since 2.0 */ public function addHistoryContent($tabs, $data = null) { if (!empty($data) && $this->isSupported($data)) { return $tabs . view('packages/revision::history-content', ['model' => $data])->render(); } return $tabs; } }
[-] RevisionServiceProvider.php
[edit]
[+]
..
[-] HookServiceProvider.php
[edit]