本文整理匯總了PHP中Pimcore\Model\Object\ClassDefinition::setName方法的典型用法代碼示例。如果您正苦於以下問題:PHP ClassDefinition::setName方法的具體用法?PHP ClassDefinition::setName怎麽用?PHP ClassDefinition::setName使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Pimcore\Model\Object\ClassDefinition
的用法示例。
在下文中一共展示了ClassDefinition::setName方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: createDefinition
/**
* Create a new definition
*
* @param $name
* @return AbstractModel
*/
protected function createDefinition($name)
{
$class = new ClassDefinition();
$class->setName($name);
return $class;
}
示例2: bulkCommitAction
/**
* See http://www.pimcore.org/issues/browse/PIMCORE-2358
* Add option to export/import all class definitions/brick definitions etc. at once
*/
public function bulkCommitAction()
{
$filename = $this->getParam("filename");
$data = json_decode($this->getParam("data"), true);
$json = @file_get_contents($filename);
$json = json_decode($json, true);
$type = $data["type"];
$name = $data["name"];
$list = $json[$type];
foreach ($list as $item) {
unset($item["creationDate"]);
unset($item["modificationDate"]);
unset($item["userOwner"]);
unset($item["userModification"]);
unset($item["id"]);
if ($type == "class" && $item["name"] == $name) {
$class = Object\ClassDefinition::getByName($name);
if (!$class) {
$class = new Object\ClassDefinition();
$class->setName($name);
}
$success = Object\ClassDefinition\Service::importClassDefinitionFromJson($class, json_encode($item), true);
$this->_helper->json(["success" => $success !== false]);
} elseif ($type == "objectbrick" && $item["key"] == $name) {
try {
$brick = Object\Objectbrick\Definition::getByKey($name);
} catch (\Exception $e) {
$brick = new Object\Objectbrick\Definition();
$brick->setKey($name);
}
$success = Object\ClassDefinition\Service::importObjectBrickFromJson($brick, json_encode($item), true);
$this->_helper->json(["success" => $success !== false]);
} elseif ($type == "fieldcollection" && $item["key"] == $name) {
try {
$fieldCollection = Object\Fieldcollection\Definition::getByKey($name);
} catch (\Exception $e) {
$fieldCollection = new Object\Fieldcollection\Definition();
$fieldCollection->setKey($name);
}
$success = Object\ClassDefinition\Service::importFieldCollectionFromJson($fieldCollection, json_encode($item), true);
$this->_helper->json(["success" => $success !== false]);
} elseif ($type == "customlayout") {
$layoutData = unserialize($data["name"]);
$className = $layoutData["className"];
$layoutName = $layoutData["name"];
if ($item["name"] == $layoutName && $item["className"] == $className) {
$class = Object\ClassDefinition::getByName($className);
if (!$class) {
throw new \Exception("Class does not exist");
}
$classId = $class->getId();
$layoutList = new Object\ClassDefinition\CustomLayout\Listing();
$db = \Pimcore\Db::get();
$layoutList->setCondition("name = " . $db->quote($layoutName) . " AND classId = " . $classId);
$layoutList = $layoutList->load();
$layoutDefinition = null;
if ($layoutList) {
$layoutDefinition = $layoutList[0];
}
if (!$layoutDefinition) {
$layoutDefinition = new Object\ClassDefinition\CustomLayout();
$layoutDefinition->setName($layoutName);
$layoutDefinition->setClassId($classId);
}
try {
$layoutDefinition->setDescription($item["description"]);
$layoutDef = Object\ClassDefinition\Service::generateLayoutTreeFromArray($item["layoutDefinitions"], true);
$layoutDefinition->setLayoutDefinitions($layoutDef);
$layoutDefinition->save();
} catch (\Exception $e) {
Logger::error($e->getMessage());
$this->_helper->json(["success" => false, "message" => $e->getMessage()]);
}
}
}
}
$this->_helper->json(["success" => true]);
}