|
@@ -261,6 +261,13 @@ abstract class Admin implements AdminInterface, DomainObjectInterface
|
|
|
*/
|
|
|
protected $modelManager;
|
|
|
|
|
|
+ /**
|
|
|
+ * The manager type to use for the admin
|
|
|
+ *
|
|
|
+ * @var string
|
|
|
+ */
|
|
|
+ private $managerType;
|
|
|
+
|
|
|
/**
|
|
|
* The current request object
|
|
|
*
|
|
@@ -2075,6 +2082,22 @@ abstract class Admin implements AdminInterface, DomainObjectInterface
|
|
|
$this->modelManager = $modelManager;
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * @return string the manager type of the admin
|
|
|
+ */
|
|
|
+ public function getManagerType()
|
|
|
+ {
|
|
|
+ return $this->managerType;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @param string $type
|
|
|
+ */
|
|
|
+ public function setManagerType($type)
|
|
|
+ {
|
|
|
+ $this->managerType = $type;
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* Returns a unique identifier for this domain object.
|
|
|
*
|