class FlexiformElementUserName in Flexiform 7
Class to add the node title field to a form.
Hierarchy
- class \FlexiformElement implements FlexiformElementInterface
- class \FlexiformElementUserName
Expanded class hierarchy of FlexiformElementUserName
1 string reference to 'FlexiformElementUserName'
- flexiform_flexiform_element_info in ./
flexiform.flexiform.inc - Implements hook_flexiform_element_info().
File
- includes/
element/ user_name.element.inc, line 10 - Contains class for the User name element.
View source
class FlexiformElementUserName extends FlexiformElement {
/**
* Return the form element for this FlexiformElement.
*/
public function form($form, &$form_state, $entity, $language = LANGUAGE_NONE) {
$parents = $form['#parents'];
$parents[] = 'name';
// Support email registration behaviour by optionally creating a hidden
// element containing an autogenerated user name.
if (module_exists('email_registration') && (!isset($this->settings['email_registration']) || !empty($this->settings['email_registration']))) {
$form[$this->element_namespace] = array(
'#type' => 'hidden',
'#parents' => $parents,
'#title' => $this
->label(),
'#value' => !empty($entity->name) ? $entity->name : 'email_registration_' . user_password(),
'#required' => TRUE,
);
return parent::form($form, $form_state, $entity);
}
// Work out the default value.
$default = '';
if (!empty($this->settings['default_value']['default_value'])) {
$default = $this->settings['default_value']['default_value'];
}
if (!empty($this->settings['default_value']['use_tokens'])) {
$default = $this
->replaceCtoolsSubstitutions($default, $form['#flexiform_entities']);
}
$form[$this->element_namespace] = array(
'#type' => 'textfield',
'#parents' => $parents,
'#title' => $this
->label(),
'#required' => TRUE,
'#attributes' => array(
'class' => array(
'username',
),
),
'#default_value' => !empty($entity->name) ? $entity->name : $default,
'#maxlength' => 255,
);
$form = parent::form($form, $form_state, $entity);
return $form;
}
/**
* Validate the form element.
*/
public function formValidate($form, &$form_state, $entity, $language = LANGUAGE_NONE) {
}
/**
* Submit the form element.
*/
public function formSubmit($form, &$form_state, $entity, $language = LANGUAGE_NONE) {
$name = $this
->formExtractValues($form, $form_state, $entity);
$entity->name = $name;
}
/**
* Extract the submitted values for this form element.
*/
public function formExtractValues($form, &$form_state, $entity) {
$parents = $form['#parents'];
$parents[] = $this
->getEntityNamespace();
$parents[] = 'name';
$name = drupal_array_get_nested_value($form_state['values'], $parents);
return $name;
}
/**
* {@inheritdoc}
*/
public function configureForm($form, &$form_state, $flexiform) {
$form = parent::configureForm($form, $form_state, $flexiform);
// Add option to turn email registration behaviour on and off for a given
// form.
if (module_exists('email_registration')) {
$form['email_registration'] = array(
'#type' => 'checkbox',
'#title' => t('Use email registration default name behavior'),
'#description' => t('Let email registration automatically create a username and hide this element.'),
'#default_value' => isset($this->settings['email_registration']) ? $this->settings['email_registration'] : TRUE,
);
}
$form['default_value'] = array(
'#tree' => TRUE,
'#type' => 'fieldset',
'#title' => t('Default Value'),
'#weight' => -5,
);
$form['default_value']['default_value'] = array(
'#type' => 'textfield',
'#title' => $this
->label() ? $this
->label() : t('Default'),
'#default_value' => !empty($this->settings['default_value']['default_value']) ? $this->settings['default_value']['default_value'] : '',
'#maxlength' => 255,
);
$form['default_value']['use_tokens'] = array(
'#type' => 'checkbox',
'#title' => t('Use Tokens in Default Value'),
'#default_value' => !empty($this->settings['default_value']['use_tokens']),
);
$form['default_value']['contexts'] = array(
'#title' => t('Substitutions'),
'#type' => 'fieldset',
'#collapsible' => TRUE,
'#collapsed' => TRUE,
);
$form['default_value']['contexts']['contexts'] = $this
->getCtoolsSubstitutionsList();
return $form;
}
/**
* {@inheritdoc}
*/
public function configureFormSubmit($form, &$form_state, $flexiform) {
if (module_exists('email_registration')) {
$this->settings['email_registration'] = $form_state['values']['email_registration'];
}
$this->settings['default_value']['default_value'] = $form_state['values']['default_value']['default_value'];
$this->settings['default_value']['use_tokens'] = $form_state['values']['default_value']['use_tokens'];
parent::configureFormSubmit($form, $form_state, $flexiform);
}
/**
* {@inheritdoc}
*/
public function toSettingsArray() {
$settings = parent::toSettingsArray();
if (isset($this->settings['email_registration'])) {
$settings['email_registration'] = $this->settings['email_registration'];
}
if (isset($this->settings['default_value'])) {
$settings['default_value'] = $this->settings['default_value'];
}
return $settings;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
FlexiformElement:: |
protected | property | The bundle this is on. | |
FlexiformElement:: |
protected | property | The namespace of this element. | |
FlexiformElement:: |
protected | property | The entity namespace of the entity this element is acting on. | |
FlexiformElement:: |
protected | property | The entity type this field is on. | |
FlexiformElement:: |
protected | property | The flexiform entity this element is one. | |
FlexiformElement:: |
protected | property | The settings for this element. | |
FlexiformElement:: |
protected | property | The weight of this element. | |
FlexiformElement:: |
public | function | Validate the configure form for the element. | 3 |
FlexiformElement:: |
public static | function | Create an element object. | |
FlexiformElement:: |
public | function | Work out if the submitted value constitutes empty. | 1 |
FlexiformElement:: |
public | function | Get an array of ctools context for the flexiform. | |
FlexiformElement:: |
public | function | Build a list of possible ctools substitutions. | |
FlexiformElement:: |
public static | function | Get an element object. | |
FlexiformElement:: |
public | function | Get the element namespace for this form element. | |
FlexiformElement:: |
public | function | Get the entity namespace for this form element. | |
FlexiformElement:: |
public | function | Get the entity type for this element. | |
FlexiformElement:: |
public | function | Get the settings. | |
FlexiformElement:: |
public | function | Get the weight of this form element. | |
FlexiformElement:: |
public | function | Get the label for this form element. | 2 |
FlexiformElement:: |
public | function | Make namespace for the element. | 1 |
FlexiformElement:: |
public | function | Get the name for this form element. | |
FlexiformElement:: |
public | function | Build the remove form for the element. | |
FlexiformElement:: |
public | function | Submit the remove form for the element. | |
FlexiformElement:: |
public | function | Validate the remove form for the element. | |
FlexiformElement:: |
public | function | Replace ctools substitutions with their values. | |
FlexiformElement:: |
public | function | Set the label for this form element. | 1 |
FlexiformElement:: |
public | function | Set the weight of this form element. | 1 |
FlexiformElement:: |
public | function | Get the type of this form element. | 3 |
FlexiformElement:: |
public | function | Construct the class. | 3 |
FlexiformElementUserName:: |
public | function |
Build the configure form for the element. Overrides FlexiformElement:: |
|
FlexiformElementUserName:: |
public | function |
Submit the configure form for the element. Overrides FlexiformElement:: |
|
FlexiformElementUserName:: |
public | function |
Return the form element for this FlexiformElement. Overrides FlexiformElement:: |
|
FlexiformElementUserName:: |
public | function |
Extract the submitted values for this form element. Overrides FlexiformElement:: |
|
FlexiformElementUserName:: |
public | function |
Submit the form element. Overrides FlexiformElement:: |
|
FlexiformElementUserName:: |
public | function |
Validate the form element. Overrides FlexiformElement:: |
|
FlexiformElementUserName:: |
public | function |
Convert this object into a settings array. Overrides FlexiformElement:: |