mirror of
https://github.com/phpbb/phpbb.git
synced 2025-02-20 16:15:00 +01:00
744 lines
23 KiB
PHP
744 lines
23 KiB
PHP
<?php
|
|
// -------------------------------------------------------------
|
|
//
|
|
// $Id$
|
|
//
|
|
// FILENAME : functions_profile_fields.php
|
|
// STARTED : Tue Oct 21, 2003
|
|
// COPYRIGHT : © 2003 phpBB Group
|
|
// WWW : http://www.phpbb.com/
|
|
// LICENCE : GPL vs2.0 [ see /docs/COPYING ]
|
|
//
|
|
// -------------------------------------------------------------
|
|
|
|
// TODO for M-3:
|
|
//
|
|
// * simplify the class (logical seperation between display and insert/update)
|
|
|
|
class custom_profile
|
|
{
|
|
var $profile_types = array(1 => 'int', 2 => 'string', 3 => 'text', 4 => 'bool', 5 => 'dropdown', 6 => 'date');
|
|
var $options_lang = array();
|
|
|
|
// Build language options cache, useful for viewtopic display
|
|
function build_cache()
|
|
{
|
|
global $db, $user;
|
|
|
|
$this->cache = array();
|
|
|
|
$sql = 'SELECT l.*, f.*
|
|
FROM ' . PROFILE_LANG_TABLE . ' l, ' . PROFILE_FIELDS_TABLE . ' f
|
|
WHERE l.lang_id = ' . $user->get_iso_lang_id() . '
|
|
AND f.field_active = 1
|
|
AND f.field_hide = 0
|
|
AND l.field_id = f.field_id
|
|
GROUP BY f.field_id
|
|
ORDER BY f.field_order';
|
|
$result = $db->sql_query($sql);
|
|
|
|
while ($row = $db->sql_fetchrow($result))
|
|
{
|
|
$this->cache[$row['field_ident']] = $row;
|
|
}
|
|
$db->sql_freeresult($result);
|
|
}
|
|
|
|
// Functions performing operations on register/profile/profile admin
|
|
function submit_cp_field($mode, &$cp_data, &$cp_error)
|
|
{
|
|
global $auth, $db;
|
|
|
|
$sql = 'SELECT *
|
|
FROM ' . PROFILE_FIELDS_TABLE . '
|
|
WHERE field_active = 1
|
|
' . (($mode == 'register') ? ' AND field_show_on_reg = 1' : '') .
|
|
(($auth->acl_gets('a_', 'm_') && $mode == 'profile') ? '' : ' AND field_hide = 0') . '
|
|
ORDER BY field_order';
|
|
$result = $db->sql_query($sql);
|
|
|
|
while ($row = $db->sql_fetchrow($result))
|
|
{
|
|
$cp_data[$row['field_ident']] = $this->get_profile_field($row);
|
|
|
|
if (($cp_result = $this->validate_profile_field($row['field_type'], $cp_data[$row['field_ident']], $row)) !== false)
|
|
{
|
|
$cp_error[] = strtoupper($row['field_ident']) . "_$cp_result";
|
|
}
|
|
}
|
|
$db->sql_freeresult($result);
|
|
}
|
|
|
|
// Assign fields to template, mode can be profile (for profile change) or register (for registration)
|
|
function generate_profile_fields($mode, $lang_id, $cp_error)
|
|
{
|
|
global $db, $template, $auth, $user;
|
|
|
|
$sql = 'SELECT l.*, f.*
|
|
FROM ' . PROFILE_LANG_TABLE . ' l, ' . PROFILE_FIELDS_TABLE . " f
|
|
WHERE l.lang_id = $lang_id
|
|
AND f.field_active = 1
|
|
" . (($mode == 'register') ? ' AND f.field_show_on_reg = 1' : '') .
|
|
(($auth->acl_gets('a_', 'm_') && $mode == 'profile') ? '' : ' AND f.field_hide = 0') . '
|
|
AND l.field_id = f.field_id
|
|
GROUP BY f.field_id
|
|
ORDER BY f.field_order';
|
|
$result = $db->sql_query($sql);
|
|
|
|
while ($row = $db->sql_fetchrow($result))
|
|
{
|
|
$template->assign_block_vars('profile_fields', array(
|
|
'LANG_NAME' => $row['lang_name'],
|
|
'LANG_EXPLAIN' => $row['lang_explain'],
|
|
'FIELD' => $this->process_field_row('change', $row),
|
|
'ERROR' => (isset($cp_error[$row['field_ident']])) ? $cp_error[$row['field_ident']] : '')
|
|
);
|
|
}
|
|
$db->sql_freeresult($result);
|
|
}
|
|
|
|
// Assign fields to template, used for viewprofile, viewtopic and memberlist (if load setting is enabled)
|
|
// This is directly connected to the user -> mode == grab is to grab the user specific fields, mode == show is for assigning the row to the template
|
|
function generate_profile_fields_template($mode, $user_id = 0, $profile_row = false)
|
|
{
|
|
global $db;
|
|
|
|
if ($mode == 'grab')
|
|
{
|
|
if (!is_array($user_id))
|
|
{
|
|
$user_id = array($user_id);
|
|
}
|
|
|
|
if (!$this->cache)
|
|
{
|
|
$this->build_cache();
|
|
}
|
|
|
|
if (!implode(', ', $user_id))
|
|
{
|
|
return array();
|
|
}
|
|
|
|
$sql = 'SELECT *
|
|
FROM ' . PROFILE_DATA_TABLE . '
|
|
WHERE user_id IN (' . implode(', ', array_map('intval', $user_id)) . ')';
|
|
$result = $db->sql_query($sql);
|
|
|
|
if (!($row = $db->sql_fetchrow($result)))
|
|
{
|
|
return array();
|
|
}
|
|
|
|
$user_fields = array();
|
|
do
|
|
{
|
|
foreach ($row as $ident => $value)
|
|
{
|
|
if ($ident != 'user_id')
|
|
{
|
|
$user_fields[$row['user_id']][$ident]['value'] = $value;
|
|
$user_fields[$row['user_id']][$ident]['data'] = $this->cache[$ident];
|
|
}
|
|
}
|
|
}
|
|
while ($row = $db->sql_fetchrow($result));
|
|
|
|
$db->sql_freeresult($result);
|
|
|
|
return $user_fields;
|
|
}
|
|
else if ($mode == 'show')
|
|
{
|
|
// $profile_row == $user_fields[$row['user_id']]
|
|
$tpl_fields = array();
|
|
|
|
foreach ($profile_row as $ident => $ident_ary)
|
|
{
|
|
$tpl_fields['PF_' . strtoupper($ident) . '_VALUE'] = $this->get_profile_value($ident_ary['data']['field_id'], $ident_ary['data']['lang_id'], $ident_ary['data']['field_type'], $ident_ary['value']);
|
|
$tpl_fields['PF_' . strtoupper($ident) . '_TITLE'] = $ident_ary['data']['lang_name'];
|
|
}
|
|
|
|
return $tpl_fields;
|
|
}
|
|
}
|
|
|
|
// Get language entries for options and store them here for later use
|
|
function get_option_lang($field_id, $lang_id, $field_type, $preview)
|
|
{
|
|
global $db;
|
|
|
|
if ($preview)
|
|
{
|
|
$lang_options = (!is_array($this->vars['lang_options'])) ? explode("\n", $this->vars['lang_options']) : $this->vars['lang_options'];
|
|
|
|
foreach ($lang_options as $num => $var)
|
|
{
|
|
$this->options_lang[$field_id][$lang_id][($num+1)] = $var;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
$sql = 'SELECT option_id, value
|
|
FROM ' . PROFILE_FIELDS_LANG_TABLE . "
|
|
WHERE field_id = $field_id
|
|
AND lang_id = $lang_id
|
|
AND field_type = $field_type
|
|
ORDER BY option_id";
|
|
$result = $db->sql_query($sql);
|
|
|
|
while ($row = $db->sql_fetchrow($result))
|
|
{
|
|
$this->options_lang[$field_id][$lang_id][$row['option_id']] = $row['value'];
|
|
}
|
|
$db->sql_freeresult($result);
|
|
}
|
|
}
|
|
|
|
// VALIDATE Function - validate entered data
|
|
function validate_profile_field($field_type, &$field_value, $field_data)
|
|
{
|
|
switch ($field_type)
|
|
{
|
|
case FIELD_INT:
|
|
case FIELD_DROPDOWN:
|
|
$field_value = (int) $field_value;
|
|
break;
|
|
|
|
case FIELD_BOOL:
|
|
$field_value = (bool) $field_value;
|
|
break;
|
|
}
|
|
|
|
switch ($field_type)
|
|
{
|
|
case FIELD_DATE:
|
|
$field_validate = explode('-', $field_value);
|
|
|
|
$day = (int) $field_validate[0];
|
|
$month = (int) $field_validate[1];
|
|
$year = (int) $field_validate[2];
|
|
|
|
if ((!$day || !$month || !$year) && !$field_data['field_required'])
|
|
{
|
|
return false;
|
|
}
|
|
|
|
if ((!$day || !$month || !$year) && $field_data['field_required'])
|
|
{
|
|
return 'FIELD_REQUIRED';
|
|
}
|
|
|
|
if ($day < 0 || $day > 31 || $month < 0 || $month > 12 || ($year < 1901 && $year > 0) || $year > gmdate('Y', time()))
|
|
{
|
|
return 'INVALID_DATE';
|
|
}
|
|
break;
|
|
|
|
case FIELD_INT:
|
|
if (empty($field_value) && !$field_data['field_required'])
|
|
{
|
|
return false;
|
|
}
|
|
|
|
if ($field_value < $field_data['field_minlen'])
|
|
{
|
|
return 'TOO_SMALL';
|
|
}
|
|
else if ($field_value > $field_data['field_maxlen'])
|
|
{
|
|
return 'TOO_LARGE';
|
|
}
|
|
break;
|
|
|
|
case FIELD_DROPDOWN:
|
|
if ($field_value == $field_data['field_novalue'] && $field_data['field_required'])
|
|
{
|
|
return 'FIELD_REQUIRED';
|
|
}
|
|
break;
|
|
|
|
case FIELD_STRING:
|
|
case FIELD_TEXT:
|
|
if (empty($field_value) && !$field_data['field_required'])
|
|
{
|
|
return false;
|
|
}
|
|
|
|
if ($field_data['field_minlen'] && strlen($field_value) < $field_data['field_minlen'])
|
|
{
|
|
return 'TOO_SHORT';
|
|
}
|
|
else if ($field_data['field_maxlen'] && strlen($field_value) > $field_data['field_maxlen'])
|
|
{
|
|
return 'TOO_LONG';
|
|
}
|
|
|
|
if (!empty($field_data['field_validation']))
|
|
{
|
|
$field_validate = ($field_type == FIELD_STRING) ? $field_value : str_replace("\n", ' ', $field_value);
|
|
if (!preg_match('#^' . str_replace('\\\\', '\\', $field_data['field_validation']) . '$#i', $field_validate))
|
|
{
|
|
return 'INVALID_CHARS';
|
|
}
|
|
}
|
|
break;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
// Get Profile Value
|
|
function get_profile_value($field_id, $lang_id, $field_type, $value)
|
|
{
|
|
switch ($this->profile_types[$field_type])
|
|
{
|
|
case 'int':
|
|
return (int) $value;
|
|
break;
|
|
case 'string':
|
|
case 'text':
|
|
// Prepare further, censor_text, smilies, bbcode, html, whatever
|
|
return str_replace("\n", '<br />', $value);
|
|
break;
|
|
case 'date':
|
|
break;
|
|
case 'dropdown':
|
|
if (!sizeof($this->options_lang[$field_id][$lang_id]))
|
|
{
|
|
$this->get_option_lang($field_id, $lang_id, FIELD_DROPDOWN, false);
|
|
}
|
|
|
|
return $this->options_lang[$field_id][$lang_id][(int) $value];
|
|
break;
|
|
case 'bool':
|
|
break;
|
|
}
|
|
}
|
|
|
|
// Get field value for registration/profile
|
|
function get_var($field_validation, &$profile_row, $default_value, $preview)
|
|
{
|
|
global $user;
|
|
|
|
$profile_row['field_name'] = (isset($profile_row['var_name'])) ? $profile_row['var_name'] : 'pf_' . $profile_row['field_ident'];
|
|
|
|
$value = (isset($_REQUEST[$profile_row['field_name']])) ? request_var($profile_row['field_name'], 0) : ((!isset($user->profile_fields[$profile_row['field_ident']]) || $preview) ? $default_value : $user->profile_fields[$profile_row['field_ident']]);
|
|
|
|
switch ($field_validation)
|
|
{
|
|
case 'int':
|
|
return (int) $value;
|
|
break;
|
|
}
|
|
|
|
return $value;
|
|
}
|
|
|
|
// GENERATE_* Functions - return templated, storable profile fields
|
|
function generate_int($profile_row, $preview = false)
|
|
{
|
|
global $template;
|
|
|
|
$value = $this->get_var('int', $profile_row, $profile_row['field_default_value'], $preview);
|
|
$this->set_tpl_vars($profile_row, $value);
|
|
|
|
return $this->get_cp_html();
|
|
}
|
|
|
|
function generate_date($profile_row, $preview = false)
|
|
{
|
|
global $user;
|
|
|
|
$profile_row['field_name'] = (isset($profile_row['var_name'])) ? $profile_row['var_name'] : 'pf_' . $profile_row['field_ident'];
|
|
$now = getdate();
|
|
|
|
if (!isset($_REQUEST[$profile_row['field_name'] . '_day']))
|
|
{
|
|
if ($profile_row['field_default_value'] == 'now')
|
|
{
|
|
$profile_row['field_default_value'] = sprintf('%2d-%2d-%4d', $now['mday'], $now['mon'], $now['year']);
|
|
}
|
|
list($day, $month, $year) = explode('-', ((!isset($user->profile_fields[$profile_row['field_ident']]) || $preview) ? $profile_row['field_default_value'] : $user->profile_fields[$profile_row['field_ident']]));
|
|
}
|
|
else
|
|
{
|
|
if ($preview && $profile_row['field_default_value'] == 'now')
|
|
{
|
|
$profile_row['field_default_value'] = sprintf('%2d-%2d-%4d', $now['mday'], $now['mon'], $now['year']);
|
|
list($day, $month, $year) = explode('-', ((!isset($user->profile_fields[$profile_row['field_ident']]) || $preview) ? $profile_row['field_default_value'] : $user->profile_fields[$profile_row['field_ident']]));
|
|
}
|
|
else
|
|
{
|
|
$day = request_var($profile_row['field_name'] . '_day', 0);
|
|
$month = request_var($profile_row['field_name'] . '_month', 0);
|
|
$year = request_var($profile_row['field_name'] . '_year', 0);
|
|
}
|
|
}
|
|
|
|
$profile_row['s_day_options'] = '<option value="0"' . ((!$day) ? ' selected="selected"' : '') . '>--</option>';
|
|
for ($i = 1; $i < 32; $i++)
|
|
{
|
|
$profile_row['s_day_options'] .= '<option value="' . $i . '"' . (($i == $day) ? ' selected="selected"' : '') . ">$i</option>";
|
|
}
|
|
|
|
$profile_row['s_month_options'] = '<option value="0"' . ((!$month) ? ' selected="selected"' : '') . '>--</option>';
|
|
for ($i = 1; $i < 13; $i++)
|
|
{
|
|
$profile_row['s_month_options'] .= '<option value="' . $i . '"' . (($i == $month) ? ' selected="selected"' : '') . ">$i</option>";
|
|
}
|
|
|
|
$profile_row['s_year_options'] = '<option value="0"' . ((!$year) ? ' selected="selected"' : '') . '>--</option>';
|
|
for ($i = $now['year'] - 100; $i <= $now['year']; $i++)
|
|
{
|
|
$profile_row['s_year_options'] .= '<option value="' . $i . '"' . (($i == $year) ? ' selected="selected"' : '') . ">$i</option>";
|
|
}
|
|
unset($now);
|
|
|
|
$this->set_tpl_vars($profile_row, $value);
|
|
return $this->get_cp_html();
|
|
}
|
|
|
|
function generate_bool($profile_row, $preview = false)
|
|
{
|
|
global $template;
|
|
|
|
$value = $this->get_var('int', $profile_row, $profile_row['field_default_value'], $preview);
|
|
|
|
$this->set_tpl_vars($profile_row, $value);
|
|
|
|
if ($profile_row['field_length'] == 1)
|
|
{
|
|
if (!sizeof($this->options_lang[$profile_row['field_id']][$profile_row['lang_id']]))
|
|
{
|
|
$this->get_option_lang($profile_row['field_id'], $profile_row['lang_id'], FIELD_BOOL, $preview);
|
|
}
|
|
|
|
foreach ($this->options_lang[$profile_row['field_id']][$profile_row['lang_id']] as $option_id => $option_value)
|
|
{
|
|
$template->assign_block_vars('bool.options', array(
|
|
'OPTION_ID' => $option_id,
|
|
'CHECKED' => ($value == $option_id) ? ' checked="checked"' : '',
|
|
'VALUE' => $option_value)
|
|
);
|
|
}
|
|
}
|
|
|
|
return $this->get_cp_html();
|
|
}
|
|
|
|
function generate_string($profile_row, $preview = false)
|
|
{
|
|
global $template;
|
|
|
|
$value = $this->get_var('', $profile_row, $profile_row['lang_default_value'], $preview);
|
|
$this->set_tpl_vars($profile_row, $value);
|
|
|
|
return $this->get_cp_html();
|
|
}
|
|
|
|
function generate_text($profile_row, $preview = false)
|
|
{
|
|
global $template;
|
|
|
|
$value = $this->get_var('', $profile_row, $profile_row['lang_default_value'], $preview);
|
|
|
|
$field_length = explode('|', $profile_row['field_length']);
|
|
$profile_row['field_rows'] = $field_length[0];
|
|
$profile_row['field_cols'] = $field_length[1];
|
|
|
|
$this->set_tpl_vars($profile_row, $value);
|
|
|
|
return $this->get_cp_html();
|
|
}
|
|
|
|
function generate_dropdown($profile_row, $preview = false)
|
|
{
|
|
global $user, $template;
|
|
|
|
$value = $this->get_var('int', $profile_row, $profile_row['field_default_value'], $preview);
|
|
|
|
if (!isset($this->options_lang[$profile_row['field_id']]) || !sizeof($this->options_lang[$profile_row['field_id']][$profile_row['lang_id']]))
|
|
{
|
|
$this->get_option_lang($profile_row['field_id'], $profile_row['lang_id'], FIELD_DROPDOWN, $preview);
|
|
}
|
|
|
|
$this->set_tpl_vars($profile_row, $value);
|
|
|
|
foreach ($this->options_lang[$profile_row['field_id']][$profile_row['lang_id']] as $option_id => $option_value)
|
|
{
|
|
$template->assign_block_vars('dropdown.options', array(
|
|
'OPTION_ID' => $option_id,
|
|
'SELECTED' => ($value == $option_id) ? ' selected="selected"' : '',
|
|
'VALUE' => $option_value)
|
|
);
|
|
}
|
|
|
|
return $this->get_cp_html();
|
|
}
|
|
|
|
|
|
// Return Templated value (change == user is able to set/enter profile values; show == just show the value)
|
|
function process_field_row($mode, $profile_row)
|
|
{
|
|
$preview = false;
|
|
|
|
switch ($mode)
|
|
{
|
|
case 'preview':
|
|
$preview = true;
|
|
case 'change':
|
|
$type_func = 'generate_' . $this->profile_types[$profile_row['field_type']];
|
|
break;
|
|
default:
|
|
return;
|
|
}
|
|
|
|
return $this->$type_func($profile_row, $preview);
|
|
}
|
|
|
|
// Build Array for user insertion into custom profile fields table
|
|
function build_insert_sql_array($cp_data)
|
|
{
|
|
global $db, $user, $auth;
|
|
|
|
$sql = 'SELECT f.field_type, f.field_ident, f.field_default_value, l.lang_default_value
|
|
FROM ' . PROFILE_LANG_TABLE . ' l, ' . PROFILE_FIELDS_TABLE . ' f
|
|
WHERE l.lang_id = ' . $user->get_iso_lang_id() . '
|
|
AND f.field_active = 1
|
|
AND f.field_show_on_reg = 0
|
|
' . (($auth->acl_gets('a_', 'm_')) ? '' : ' AND f.field_hide = 0') . '
|
|
AND l.field_id = f.field_id
|
|
GROUP BY f.field_id';
|
|
$result = $db->sql_query($sql);
|
|
|
|
while ($row = $db->sql_fetchrow($result))
|
|
{
|
|
if ($row['field_default_value'] == 'now' && $row['field_type'] == FIELD_DATE)
|
|
{
|
|
$now = getdate();
|
|
$row['field_default_value'] = sprintf('%2d-%2d-%4d', $now['mday'], $now['mon'], $now['year']);
|
|
}
|
|
$cp_data[$row['field_ident']] = (in_array($row['field_type'], array(FIELD_TEXT, FIELD_STRING))) ? $row['lang_default_value'] : $row['field_default_value'];
|
|
}
|
|
$db->sql_freeresult($result);
|
|
|
|
return $cp_data;
|
|
}
|
|
|
|
function get_profile_field($profile_row)
|
|
{
|
|
switch ($profile_row['field_type'])
|
|
{
|
|
case FIELD_DATE:
|
|
$var_name = 'pf_' . $profile_row['field_ident'];
|
|
|
|
if (!isset($_REQUEST[$var_name . '_day']))
|
|
{
|
|
if ($profile_row['field_default_value'] == 'now')
|
|
{
|
|
$now = getdate();
|
|
$profile_row['field_default_value'] = sprintf('%2d-%2d-%4d', $now['mday'], $now['mon'], $now['year']);
|
|
}
|
|
list($day, $month, $year) = explode('-', $profile_row['field_default_value']);
|
|
}
|
|
else
|
|
{
|
|
$day = request_var($var_name . '_day', 0);
|
|
$month = request_var($var_name . '_month', 0);
|
|
$year = request_var($var_name . '_year', 0);
|
|
}
|
|
|
|
$var = sprintf('%2d-%2d-%4d', $day, $month, $year);
|
|
break;
|
|
|
|
default:
|
|
$var = request_var('pf_' . $profile_row['field_ident'], $profile_row['field_default_value']);
|
|
}
|
|
|
|
return $var;
|
|
}
|
|
|
|
function set_tpl_vars($profile_row, $field_value)
|
|
{
|
|
global $template;
|
|
|
|
$template->set_filenames(array(
|
|
'cp' => 'custom_profile_fields.html')
|
|
);
|
|
|
|
foreach ($this->profile_types as $field_case => $field_type)
|
|
{
|
|
unset($template->_tpldata[$field_type]);
|
|
}
|
|
|
|
foreach ($profile_row as $key => $value)
|
|
{
|
|
unset($profile_row[$key]);
|
|
$profile_row[strtoupper($key)] = $value;
|
|
}
|
|
|
|
$profile_row['FIELD_VALUE'] = $field_value;
|
|
|
|
$template->assign_block_vars($this->profile_types[$profile_row['FIELD_TYPE']], $profile_row);
|
|
}
|
|
|
|
function get_cp_html()
|
|
{
|
|
global $template;
|
|
|
|
ob_start();
|
|
$template->display('cp', false);
|
|
$data = ob_get_contents();
|
|
ob_end_clean();
|
|
|
|
return $data;
|
|
}
|
|
}
|
|
|
|
class custom_profile_admin extends custom_profile
|
|
{
|
|
var $vars = array();
|
|
|
|
|
|
function validate_options()
|
|
{
|
|
global $user;
|
|
|
|
$validate_ary = array('CHARS_ANY' => '.*', 'NUMBERS_ONLY' => '[0-9]+', 'ALPHA_ONLY' => '[\w]+', 'ALPHA_SPACERS' => '[\w_\+\. \-\[\]]+');
|
|
|
|
$validate_options = '';
|
|
foreach ($validate_ary as $lang => $value)
|
|
{
|
|
$selected = ($this->vars['field_validation'] == $value) ? ' selected="selected"' : '';
|
|
$validate_options .= '<option value="' . $value . '"' . $selected . '>' . $user->lang[$lang] . '</option>';
|
|
}
|
|
|
|
return $validate_options;
|
|
}
|
|
|
|
// GET_* get admin options for second step
|
|
function get_string_options()
|
|
{
|
|
global $user;
|
|
|
|
$options = array(
|
|
0 => array('TITLE' => $user->lang['FIELD_LENGTH'], 'FIELD' => '<input class="post" type="text" name="field_length" size="5" value="' . $this->vars['field_length'] . '" />'),
|
|
1 => array('TITLE' => $user->lang['MIN_FIELD_CHARS'], 'FIELD' => '<input class="post" type="text" name="field_minlen" size="5" value="' . $this->vars['field_minlen'] . '" />'),
|
|
2 => array('TITLE' => $user->lang['MAX_FIELD_CHARS'], 'FIELD' => '<input class="post" type="text" name="field_maxlen" size="5" value="' . $this->vars['field_maxlen'] . '" />'),
|
|
3 => array('TITLE' => $user->lang['FIELD_VALIDATION'], 'FIELD' => '<select name="field_validation">' . $this->validate_options() . '</select>')
|
|
);
|
|
|
|
return $options;
|
|
}
|
|
|
|
function get_text_options()
|
|
{
|
|
global $user;
|
|
|
|
$options = array(
|
|
0 => array('TITLE' => $user->lang['FIELD_LENGTH'], 'FIELD' => '<table border=0><tr><td><input name="rows" size="5" value="' . $this->vars['rows'] . '" class="post" /></td><td>[ ' . $user->lang['ROWS'] . ' ]</td></tr><tr><td><input name="columns" size="5" value="' . $this->vars['columns'] . '" class="post" /></td><td>[ ' . $user->lang['COLUMNS'] . ' ] <input type="hidden" name="field_length" value="' . $this->vars['field_length'] . '" /></td></tr></table>'),
|
|
1 => array('TITLE' => $user->lang['MIN_FIELD_CHARS'], 'FIELD' => '<input class="post" type="text" name="field_minlen" size="10" value="' . $this->vars['field_minlen'] . '" />'),
|
|
2 => array('TITLE' => $user->lang['MAX_FIELD_CHARS'], 'FIELD' => '<input class="post" type="text" name="field_maxlen" size="10" value="' . $this->vars['field_maxlen'] . '" />'),
|
|
3 => array('TITLE' => $user->lang['FIELD_VALIDATION'], 'FIELD' => '<select name="field_validation">' . $this->validate_options() . '</select>')
|
|
);
|
|
|
|
return $options;
|
|
}
|
|
|
|
function get_int_options()
|
|
{
|
|
global $user;
|
|
|
|
$options = array(
|
|
0 => array('TITLE' => $user->lang['FIELD_LENGTH'], 'FIELD' => '<input class="post" type="text" name="field_length" size="5" value="' . $this->vars['field_length'] . '" />'),
|
|
1 => array('TITLE' => $user->lang['MIN_FIELD_NUMBER'], 'FIELD' => '<input class="post" type="text" name="field_minlen" size="5" value="' . $this->vars['field_minlen'] . '" />'),
|
|
2 => array('TITLE' => $user->lang['MAX_FIELD_NUMBER'], 'FIELD' => '<input class="post" type="text" name="field_maxlen" size="5" value="' . $this->vars['field_maxlen'] . '" />'),
|
|
3 => array('TITLE' => $user->lang['DEFAULT_VALUE'], 'FIELD' => '<input class="post" type="post" name="field_default_value" value="' . $this->vars['field_default_value'] . '" />')
|
|
);
|
|
|
|
return $options;
|
|
}
|
|
|
|
function get_bool_options()
|
|
{
|
|
global $user, $config, $lang_defs;
|
|
|
|
$default_lang_id = $lang_defs['iso'][$config['default_lang']];
|
|
|
|
$profile_row = array(
|
|
'var_name' => 'field_default_value',
|
|
'lang_name' => $this->vars['lang_name'],
|
|
'lang_explain' => $this->vars['lang_explain'],
|
|
'lang_id' => $default_lang_id,
|
|
'field_default_value' => $this->vars['field_default_value'],
|
|
'field_ident' => 'field_default_value',
|
|
'field_type' => FIELD_BOOL,
|
|
'field_length' => $this->vars['field_length'],
|
|
'lang_options' => $this->vars['lang_options']
|
|
);
|
|
|
|
$options = array(
|
|
0 => array('TITLE' => $user->lang['FIELD_TYPE'], 'EXPLAIN' => $user->lang['BOOL_TYPE_EXPLAIN'], 'FIELD' => '<input type="radio" name="field_length" value="1"' . (($this->vars['field_length'] == 1) ? ' checked="checked"' : '') . ' />' . $user->lang['RADIO_BUTTONS'] . ' <input type="radio" name="field_length" value="2"' . (($this->vars['field_length'] == 2) ? ' checked="checked"' : '') . ' />' . $user->lang['CHECKBOX'] . ' '),
|
|
1 => array('TITLE' => $user->lang['DEFAULT_VALUE'], 'FIELD' => $this->generate_bool($profile_row, true))
|
|
);
|
|
|
|
return $options;
|
|
}
|
|
|
|
function get_dropdown_options()
|
|
{
|
|
global $user, $config, $lang_defs;
|
|
|
|
$default_lang_id = $lang_defs['iso'][$config['default_lang']];
|
|
|
|
$profile_row[0] = array(
|
|
'var_name' => 'field_default_value',
|
|
'field_id' => 1,
|
|
'lang_name' => $this->vars['lang_name'],
|
|
'lang_explain' => $this->vars['lang_explain'],
|
|
'lang_id' => $default_lang_id,
|
|
'field_default_value' => $this->vars['field_default_value'],
|
|
'field_ident' => 'field_default_value',
|
|
'field_type' => FIELD_DROPDOWN,
|
|
'lang_options' => $this->vars['lang_options']
|
|
);
|
|
|
|
$profile_row[1] = $profile_row[0];
|
|
$profile_row[1]['var_name'] = 'field_no_value';
|
|
$profile_row[1]['field_ident'] = 'field_no_value';
|
|
|
|
$options = array(
|
|
0 => array('TITLE' => $user->lang['DEFAULT_VALUE'], 'FIELD' => $this->generate_dropdown($profile_row[0], true)),
|
|
1 => array('TITLE' => $user->lang['NO_VALUE_OPTION'], 'EXPLAIN' => $user->lang['NO_VALUE_OPTION_EXPLAIN'], 'FIELD' => $this->generate_dropdown($profile_row[1], true))
|
|
);
|
|
|
|
return $options;
|
|
}
|
|
|
|
function get_date_options()
|
|
{
|
|
global $user, $config, $lang_defs;
|
|
|
|
$default_lang_id = $lang_defs['iso'][$config['default_lang']];
|
|
|
|
$profile_row = array(
|
|
'var_name' => 'field_default_value',
|
|
'lang_name' => $this->vars['lang_name'],
|
|
'lang_explain' => $this->vars['lang_explain'],
|
|
'lang_id' => $default_lang_id,
|
|
'field_default_value' => $this->vars['field_default_value'],
|
|
'field_ident' => 'field_default_value',
|
|
'field_type' => FIELD_DATE,
|
|
'field_length' => $this->vars['field_length']
|
|
);
|
|
|
|
$options = array(
|
|
0 => array('TITLE' => $user->lang['DEFAULT_VALUE'], 'FIELD' => $this->generate_date($profile_row, true) . '<br /><input type="checkbox" name="always_now"' . ((isset($_REQUEST['always_now']) || $this->vars['field_default_value'] == 'now') ? ' checked="checked"' : '') . ' /> ' . $user->lang['ALWAYS_TODAY'])
|
|
);
|
|
|
|
return $options;
|
|
}
|
|
}
|
|
|
|
?>
|