Files
core/hwe/sammo/ObjectTrigger.php
T
2020-05-08 20:52:16 +09:00

37 lines
953 B
PHP

<?php
namespace sammo;
abstract class ObjectTrigger{
const PRIORITY_MIN = 0;
const PRIORITY_BEGIN = 10000;
const PRIORITY_PRE = 20000;
const PRIORITY_BODY = 30000;
const PRIORITY_POST = 40000;
const PRIORITY_FINAL = 50000;
/** @var int 낮을 수록 우선순위가 높다. */
protected $priority;
protected $object = null;
public function getPriority():int{
return $this->priority;
}
public function setPriority(int $newPriority):self{
$this->priority = $newPriority;
return $this;
}
abstract public function action(?array $env=null, $arg=null):?array;
public function getUniqueID():string{
$priority = $this->priority;
$fqn = static::class;
if($this->object === null){
$objID = '';
}
else{
$objID = spl_object_id($this->object);
}
return "{$priority}_{$fqn}_{$objID}";
}
}