shop changes

This commit is contained in:
2025-06-25 16:04:19 -07:00
parent 8d33ce2dc7
commit b0635919b1
30 changed files with 550 additions and 144 deletions

View File

@@ -0,0 +1,27 @@
<?php
namespace ofc;
abstract class RadAction implements RadActionInterface
{
protected string $hookName;
protected int $priority = 99;
protected bool $wrapInit = false;
public function getHookName(): string
{
return $this->hookName;
}
public function getPriority(): int
{
return $this->priority;
}
public function wrapHookInInit(): bool
{
return $this->wrapInit;
}
abstract public function callback();
}