本文整理汇总了PHP中Pimcore\Model\Document::getTypes方法的典型用法代码示例。如果您正苦于以下问题:PHP Document::getTypes方法的具体用法?PHP Document::getTypes怎么用?PHP Document::getTypes使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Pimcore\Model\Document
的用法示例。
在下文中一共展示了Document::getTypes方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getDocumentTypesAction
public function getDocumentTypesAction()
{
$documentTypes = Document::getTypes();
$typeItems = [];
foreach ($documentTypes as $documentType) {
$typeItems[] = ["text" => $documentType];
}
$this->_helper->json($typeItems);
}
示例2: ENUM
<?php
$db = \Pimcore\Db::get();
$types = \Pimcore\Model\Document::getTypes();
$types[] = "printpage";
$types[] = "printcontainer";
$types = array_unique($types);
$db->query("\n ALTER TABLE documents\n CHANGE type type ENUM('" . implode("', '", $types) . "');\n");
// add missing indexes
$db->query("CREATE TABLE IF NOT EXISTS `documents_printpage` (\n `id` int(11) unsigned NOT NULL DEFAULT '0',\n `module` varchar(255) DEFAULT NULL,\n `controller` varchar(255) DEFAULT NULL,\n `action` varchar(255) DEFAULT NULL,\n `template` varchar(255) DEFAULT NULL,\n `lastGenerated` int(11) DEFAULT NULL,\n `lastGenerateMessage` text CHARACTER SET utf8,\n PRIMARY KEY (`id`)\n) DEFAULT CHARSET=utf8;\n");
示例3: isValidType
/**
* @param $type
* @return bool
*/
public static function isValidType($type)
{
return in_array($type, Document::getTypes());
}