// ローカルフックポイントを実行
$class_name = static::class;
if (str_ends_with($class_name, '_Ex')) {
$parent_class_name = get_parent_class($this);
$objPlugin->doAction($parent_class_name.'_action_before', [$this]);
} else {
$objPlugin->doAction($class_name.'_action_before', [$this]);
}
何を想定して
doAction()を2回コールしているか不明。ec-cube2/data/class/pages/admin/LC_Page_Admin.php
Lines 179 to 185 in 2df1730
以下が正しい?
refs #1213