当前位置: 首页>>代码示例>>PHP>>正文


PHP Document::getTypes方法代码示例

本文整理汇总了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);
 }
开发者ID:pimcore,项目名称:pimcore,代码行数:9,代码来源:ClassController.php

示例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");
开发者ID:SeerUK,项目名称:pimcore-manual-updater,代码行数:10,代码来源:postupdate.php

示例3: isValidType

 /**
  * @param $type
  * @return bool
  */
 public static function isValidType($type)
 {
     return in_array($type, Document::getTypes());
 }
开发者ID:Gerhard13,项目名称:pimcore,代码行数:8,代码来源:Service.php


注:本文中的Pimcore\Model\Document::getTypes方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。