Show HOOK in debug bar.

This commit is contained in:
Edward Yang 2023-02-27 14:53:14 +08:00
parent 43c7a5461e
commit 46b9ebfa41
3 changed files with 44 additions and 4 deletions

View File

@ -1,5 +1,6 @@
<?php <?php
use Barryvdh\Debugbar\Facades\Debugbar;
use Beike\Hook\Facades\Hook; use Beike\Hook\Facades\Hook;
use Beike\Models\AdminUser; use Beike\Models\AdminUser;
use Beike\Models\Currency; use Beike\Models\Currency;
@ -184,7 +185,7 @@ function type_label($type, $value, array $texts = []): string
return PageRepo::getName($value); return PageRepo::getName($value);
} elseif ($type == 'page_category') { } elseif ($type == 'page_category') {
return PageCategoryRepo::getName($value); return PageCategoryRepo::getName($value);
} elseif ($type == 'static') { } elseif ($type == 'static') {
return trans('shop/' . $value); return trans('shop/' . $value);
} elseif ($type == 'custom') { } elseif ($type == 'custom') {
return $text; return $text;
@ -529,7 +530,7 @@ function quantity_format($quantity)
return round($quantity / 1000, 1) . 'K'; return round($quantity / 1000, 1) . 'K';
} }
return $quantity; return $quantity;
} }
@ -618,6 +619,10 @@ function create_directories($directoryPath)
*/ */
function hook_filter($hookKey, $hookValue): mixed function hook_filter($hookKey, $hookValue): mixed
{ {
if (config('app.debug')) {
Debugbar::log('HOOK === hook_filter: ' . $hookKey);
}
return Eventy::filter($hookKey, $hookValue); return Eventy::filter($hookKey, $hookValue);
} }
@ -629,6 +634,9 @@ function hook_filter($hookKey, $hookValue): mixed
*/ */
function hook_action($hookKey, $hookValue) function hook_action($hookKey, $hookValue)
{ {
if (config('app.debug')) {
Debugbar::log('HOOK === hook_action: ' . $hookKey);
}
Eventy::action($hookKey, $hookValue); Eventy::action($hookKey, $hookValue);
} }

View File

@ -5,6 +5,7 @@
namespace Beike\Hook; namespace Beike\Hook;
use Barryvdh\Debugbar\Facades\Debugbar;
use Illuminate\Support\Arr; use Illuminate\Support\Arr;
class Hook class Hook
@ -47,6 +48,37 @@ class Hook
return $output; return $output;
} }
/**
* @param string $hook
* @param array $params
* @param callable|null $callback
* @param string $htmlContent
* @return string|void|null
*/
public function getHook(string $hook, array $params = [], callable $callback = null, string $htmlContent = '')
{
if (config('app.debug')) {
Debugbar::log("HOOK === @hook: {$hook}");
}
return $this->get($hook, $params, $callback, $htmlContent);
}
/**
* @param string $hook
* @param array $params
* @param callable|null $callback
* @param string $htmlContent
* @return string|void|null
*/
public function getWrapper(string $hook, array $params = [], callable $callback = null, string $htmlContent = '')
{
if (config('app.debug')) {
Debugbar::log("HOOK === @hookwrapper: {$hook}");
}
return $this->get($hook, $params, $callback, $htmlContent);
}
/** /**
* Stop all another hook running. * Stop all another hook running.
* *

View File

@ -44,7 +44,7 @@ class HookServiceProvider extends ServiceProvider
{ {
$__definedVars = []; $__definedVars = [];
} }
$output = \Hook::get("' . $name . '",["data"=>$__definedVars],function($data) { return null; }); $output = \Hook::getHook("' . $name . '",["data"=>$__definedVars],function($data) { return null; });
if ($output) if ($output)
echo $output; echo $output;
?>'; ?>';
@ -78,7 +78,7 @@ class HookServiceProvider extends ServiceProvider
$__definedVars = []; $__definedVars = [];
} }
$__hook_content = ob_get_clean(); $__hook_content = ob_get_clean();
$output = \Hook::get("$__hook_name",["data"=>$__definedVars],function($data) { return null; },$__hook_content); $output = \Hook::getWrapper("$__hook_name",["data"=>$__definedVars],function($data) { return null; },$__hook_content);
unset($__hook_name); unset($__hook_name);
unset($__hook_content); unset($__hook_content);
if ($output) if ($output)