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


PHP DynamicField::updateField方法代码示例

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


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

示例1: array

}
$audit_value = 0;
if (isset($_REQUEST['audited'])) {
    $audit_value = 1;
}
$mass_update = 0;
if (isset($_REQUEST['mass_update'])) {
    $mass_update = 1;
}
$id = '';
if (isset($_REQUEST['id'])) {
    $id = $_REQUEST['id'];
}
if (empty($id)) {
    $custom_fields->addField($_REQUEST['name'], $label, $_REQUEST['data_type'], $max_size, $required_opt, $default_value, $ext1, $ext2, $ext3, $audit_value, $mass_update, $_REQUEST['duplicate_merge']);
} else {
    $custom_fields->updateField($id, array('max_size' => $max_size, 'required_option' => $required_opt, 'default_value' => $default_value, 'audited' => $audit_value, 'mass_update' => $mass_update, 'duplicate_merge' => $_REQUEST['duplicate_merge']));
}
if ($_REQUEST['style'] == 'popup') {
    $name = $_REQUEST['name'];
    $html = $custom_fields->getFieldHTML($name, $_REQUEST['file_type']);
    set_register_value('dyn_layout', 'field_counter', $_REQUEST['field_count']);
    $label = $custom_fields->getFieldLabelHTML($name, $_REQUEST['data_type']);
    require_once 'modules/DynamicLayout/AddField.php';
    $af = new AddField();
    $af->add_field($name, $html, $label, 'window.opener.');
    echo $af->get_script('window.opener.');
    echo "\n<script>window.close();</script>";
} else {
    header("Location: index.php?action=index&module=EditCustomFields&module_name=" . $_REQUEST['module_name']);
}
开发者ID:BackupTheBerlios,项目名称:livealphaprint,代码行数:31,代码来源:Save.php

示例2: array

$ext4 = !empty($_REQUEST['ext4']) ? $_REQUEST['ext4'] : '';
$help = !empty($_REQUEST['help']) ? $_REQUEST['help'] : '';
$max_size = !empty($_REQUEST['max_size']) ? $_REQUEST['max_size'] : '';
$default_value = !empty($_REQUEST['default_value']) ? $_REQUEST['default_value'] : '';
$audit_value = !empty($_REQUEST['audited']) ? 1 : 0;
$mass_update = !empty($_REQUEST['mass_update']) ? 1 : 0;
$required_opt = !empty($_REQUEST['required_option']) ? 'required' : 'optional';
$id = !empty($_REQUEST['id']) ? $_REQUEST['id'] : '';
if (empty($id)) {
    $custom_fields->addField($_REQUEST['name'], $label, $_REQUEST['data_type'], $max_size, $required_opt, $default_value, $ext1, $ext2, $ext3, $audit_value, $mass_update, $ext4, $help, $_REQUEST['duplicate_merge']);
} else {
    $values = array('max_size' => $max_size, 'required_option' => $required_opt, 'default_value' => $default_value, 'audited' => $audit_value, 'mass_update' => $mass_update, 'ext4' => $ext4, 'help' => $help, 'duplicate_merge' => $_REQUEST['duplicate_merge']);
    if (!empty($ext1)) {
        $values['ext1'] = $ext1;
    }
    $custom_fields->updateField($id, $values);
}
if (!empty($_REQUEST['popup'])) {
    ob_clean();
    $name = $custom_fields->getDBName($_REQUEST['name']);
    $files = StudioParser::getFiles($module);
    $view = StudioParser::getFileType($files[$_SESSION['studio']['selectedFileId']]['type']);
    $custom_fields->avail_fields = array();
    $custom_fields->getAvailableFields(true);
    $field = $custom_fields->getField($name);
    $custom_fields->bean->field_defs[$name] = $field->get_field_def();
    $custom_fields->bean->field_defs[$name]['type'] = $custom_fields->bean->field_defs[$name]['custom_type'];
    $html = $custom_fields->getAllBeanFieldsView($view, 'html');
    $html = $html[$name];
    $string = '[NAME]' . $name . '[TYPE]' . $html['fieldType'] . '[LABEL]' . translate(str_replace(array('{', '}', 'MOD.', 'mod.', 'APP.', 'app.'), '', $html['label']), $module);
    $string .= '[DATA]' . $html['html'];
开发者ID:BackupTheBerlios,项目名称:livealphaprint,代码行数:31,代码来源:Save.php


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