diff options
Diffstat (limited to 'core/namespace/Item.php')
-rw-r--r-- | core/namespace/Item.php | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/core/namespace/Item.php b/core/namespace/Item.php index 92eb0e8..74b5688 100644 --- a/core/namespace/Item.php +++ b/core/namespace/Item.php @@ -51,26 +51,6 @@ abstract class Item implements ItemInterface { } #=============================================================================== - # Return parsed arguments - #=============================================================================== - public function getArguments(): array { - if($argv = $this->Attribute->get('argv')) { - foreach(explode('|', $argv) as $delimeter) { - $part = explode('=', $delimeter); - - $argumentK = $part[0] ?? NULL; - $argumentV = $part[1] ?? TRUE; - - if(preg_match('#^[[:word:]]+$#', $argumentK)) { - $arguments[strtoupper($argumentK)] = $argumentV; - } - } - } - - return $arguments ?? []; - } - - #=============================================================================== # Return previous item ID #=============================================================================== public function getPrevID(): int { |