本文整理汇总了PHP中Attribute::create方法的典型用法代码示例。如果您正苦于以下问题:PHP Attribute::create方法的具体用法?PHP Attribute::create怎么用?PHP Attribute::create使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Attribute
的用法示例。
在下文中一共展示了Attribute::create方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: foreach
<?php
namespace tatt;
require_once 'tatt/webcommon.php';
$auth->require_login();
$item_types = Item_Type::get_item_types_by_owner_id($user_id);
$page->load_javascript_include("items/add_attribute.js");
$page->assign('item_types', $item_types);
$page->assign('page_title', 'Add Attributes');
$page->display('items/add_attribute.tpl');
$type_id = null;
if(isset($_POST['type_id']) && is_numeric($_POST['type_id']) && isset($_POST['attributes']) && isset($_POST['new_attributes']) ){
$type_id = $_POST['type_id'];
foreach($_POST['attributes'] as $attribute){
if($attribute['name'] != ""){
Attribute::set_name( (int)$attribute['id'], $db->escape_string($attribute['name']));
}
}
foreach($_POST['new_attributes'] as $new_attribute){
if($new_attribute != ""){
Attribute::create($db->escape_string($new_attribute), $type_id);
}
}
}
示例2: Create
public static function Create($attribute)
{
Attribute::create(array('name' => $attribute->name, 'attributegroup_id' => $attribute->attributegroup_id, 'type' => $attribute->type, 'unit_id' => $attribute->unit_id, 'status' => $attribute->status));
}