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


PHP Type::getAttributeTypeList方法代码示例

本文整理汇总了PHP中Concrete\Core\Attribute\Type::getAttributeTypeList方法的典型用法代码示例。如果您正苦于以下问题:PHP Type::getAttributeTypeList方法的具体用法?PHP Type::getAttributeTypeList怎么用?PHP Type::getAttributeTypeList使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Concrete\Core\Attribute\Type的用法示例。


在下文中一共展示了Type::getAttributeTypeList方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: on_start

 public function on_start()
 {
     parent::on_start();
     $this->set('category', AttributeKeyCategory::getByHandle('collection'));
     $otypes = AttributeType::getAttributeTypeList('collection');
     $types = array();
     foreach ($otypes as $at) {
         $types[$at->getAttributeTypeID()] = $at->getAttributeTypeDisplayName();
     }
     $this->set('types', $types);
 }
开发者ID:digideskio,项目名称:concrete5,代码行数:11,代码来源:attributes.php

示例2: getResults

 public function getResults(Request $request)
 {
     $list = Type::getAttributeTypeList();
     $items = array();
     foreach ($list as $type) {
         $attributeType = new \PortlandLabs\Concrete5\MigrationTool\Entity\Export\AttributeType();
         $attributeType->setItemId($type->getAttributeTypeID());
         $items[] = $attributeType;
     }
     return $items;
 }
开发者ID:motoki1199,项目名称:addon_migration_tool,代码行数:11,代码来源:AttributeType.php

示例3: t

<?php

defined('C5_EXECUTE') or die("Access Denied.");
use Concrete\Core\Attribute\Type as AttributeType;
use Concrete\Core\Attribute\Key\Category as AttributeKeyCategory;
use Concrete\Core\Attribute\PendingType as PendingAttributeType;
$types = AttributeType::getAttributeTypeList();
$categories = AttributeKeyCategory::getList();
$txt = Loader::helper('text');
$form = Loader::helper('form');
$interface = Loader::helper('concrete/ui');
$valt = Core::make('token');
?>
	<form method="post" class="" id="attribute_type_associations_form" action="<?php 
echo $view->action('save_attribute_type_associations');
?>
">
	<?php 
$valt->output('save_attribute_type_associations');
?>
	<table border="0" cellspacing="1" cellpadding="0" border="0" class="table">
		<tr>
			<th><?php 
echo t('Name');
?>
</th>
			<?php 
foreach ($categories as $cat) {
    ?>
				<th><?php 
    echo $txt->unhandle($cat->getAttributeKeyCategoryHandle());
开发者ID:seebaermichi,项目名称:concrete5,代码行数:31,代码来源:types.php

示例4: view

 public function view($id = null)
 {
     $entity = $this->getEntity($id);
     $this->set('entity', $entity);
     $this->renderList($entity->getAttributes(), Type::getAttributeTypeList());
 }
开发者ID:ppiedaderawnet,项目名称:concrete5,代码行数:6,代码来源:attributes.php


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