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


PHP Attribute::create方法代码示例

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

示例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));
 }
开发者ID:krasaler,项目名称:FamilyStore,代码行数:4,代码来源:AttributeService.php


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