wiki-grav/plugins/shortcode-core/classes/plugin/ShortcodeObject.php
2023-06-02 08:07:58 +02:00

34 lines
597 B
PHP

<?php
namespace Grav\Plugin\ShortcodeCore;
class ShortcodeObject
{
protected $obj_name;
protected $obj_object;
public function __construct($name, $object)
{
$this->obj_name = $name;
$this->obj_object = $object;
}
public function __toString()
{
return $this->obj_object;
}
public function name()
{
return $this->obj_name;
}
public function object()
{
return $this->obj_object;
}
}
// Make sure we also autoload the deprecated class.
class_exists(\Grav\Plugin\Shortcodes\ShortcodeObject::class);