class AbjsConditionForm in A/B Test JS 8
Same name and namespace in other branches
- 2.0.x src/Form/AbjsConditionForm.php \Drupal\abjs\Form\AbjsConditionForm
Class for build form condition.
Hierarchy
- class \Drupal\Core\Form\FormBase implements ContainerInjectionInterface, FormInterface uses DependencySerializationTrait, LoggerChannelTrait, MessengerTrait, LinkGeneratorTrait, RedirectDestinationTrait, UrlGeneratorTrait, StringTranslationTrait
- class \Drupal\abjs\Form\AbjsConditionForm
Expanded class hierarchy of AbjsConditionForm
1 string reference to 'AbjsConditionForm'
File
- src/
Form/ AbjsConditionForm.php, line 15
Namespace
Drupal\abjs\FormView source
class AbjsConditionForm extends FormBase {
/**
* Current account user.
*
* @var \Drupal\Core\Session\AccountInterface
*/
protected $account;
/**
* Provides database connection service.
*
* @var \Drupal\Core\Database\Database
*/
protected $database;
/**
* Provides a class for obtaining system time.
*
* @var \Drupal\Component\Datetime\Time
*/
protected $time;
/**
* Class constructor.
*/
public function __construct(AccountInterface $account, Connection $database, Time $time) {
$this->account = $account;
$this->database = $database;
$this->time = $time;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container) {
return new static($container
->get('current_user'), $container
->get('database'), $container
->get('datetime.time'));
}
/**
* {@inheritdoc}
*/
public function getFormId() {
return 'abjs_condition';
}
/**
* Building the form.
*
* @param array $form
* The form.
* @param \Drupal\Core\Form\FormStateInterface $form_state
* The state of forms.
* @param int $cid
* The ID of the item.
*/
public function buildForm(array $form, FormStateInterface $form_state, $cid = NULL) {
$form = [];
$condition_name_default = "";
$condition_script_default = "";
if (!empty($cid)) {
$condition_result = $this->database
->query('SELECT name, script FROM {abjs_condition} WHERE cid = :cid', [
':cid' => $cid,
]);
$condition = $condition_result
->fetchObject();
if (empty($condition)) {
$this
->messenger()
->addMessage($this
->t('The requested condition does not exist.'), 'error');
return $form;
}
$condition_name_default = $condition->name;
$condition_script_default = $condition->script;
$form['cid'] = [
'#type' => 'value',
'#value' => $cid,
];
}
$form['name'] = [
'#type' => 'textfield',
'#title' => $this
->t('Condition Name'),
'#default_value' => $condition_name_default,
'#size' => 30,
'#maxlength' => 50,
'#required' => TRUE,
];
$form['script'] = [
'#type' => 'textarea',
'#title' => $this
->t('Condition Script'),
'#default_value' => $condition_script_default,
'#description' => $this
->t('Any valid javascript with a return statement at the end, returning true or false. Read the documentation for examples'),
'#rows' => 3,
'#required' => TRUE,
];
$form['actions'] = [
'#type' => 'actions',
];
$form['actions']['save'] = [
'#type' => 'submit',
'#value' => $this
->t('Save'),
'#weight' => 5,
'#submit' => [
'::saveCondition',
],
'#attributes' => [
'class' => [
"button button-action button--primary",
],
],
];
$form['actions']['cancel'] = [
'#type' => 'submit',
'#value' => $this
->t('Cancel'),
'#weight' => 10,
'#submit' => [
'::cancelCondition',
],
'#limit_validation_errors' => [],
];
if (!empty($cid)) {
$form['actions']['delete'] = [
'#type' => 'submit',
'#value' => $this
->t('Delete'),
'#weight' => 15,
'#submit' => [
'::deleteCondition',
],
];
}
// Add ace code editor for syntax highlighting on the script field.
if ($this
->configFactory()
->get('abjs.settings')
->get('ace') == 1) {
$form['#attached']['library'][] = 'abjs/ace-editor';
}
return $form;
}
/**
* {@inheritdoc}
*/
public function submitForm(array &$form, FormStateInterface $form_state) {
}
/**
* Save data.
*
* @param array $form
* The form.
* @param \Drupal\Core\Form\FormStateInterface $form_state
* The state of forms.
*/
public function saveCondition(array &$form, FormStateInterface $form_state) {
$user = $this->account;
if ($form_state
->hasValue('cid')) {
// This is a modified condition, so use update.
$this->database
->update('abjs_condition')
->fields([
'name' => $form_state
->getValue('name'),
'script' => $form_state
->getValue('script'),
'changed' => $this->time
->getRequestTime(),
'changed_by' => $user
->id(),
])
->condition('cid', $form_state
->getValue('cid'), '=')
->execute();
$this
->messenger()
->addMessage($this
->t("Successfully updated condition"));
}
else {
// This is a new condition, so use insert.
$this->database
->insert('abjs_condition')
->fields([
'name' => $form_state
->getValue('name'),
'script' => $form_state
->getValue('script'),
'created' => $this->time
->getRequestTime(),
'created_by' => $user
->id(),
'changed' => $this->time
->getRequestTime(),
'changed_by' => $user
->id(),
])
->execute();
$this
->messenger()
->addMessage($this
->t("Successfully saved new condition"));
}
$form_state
->setRedirect('abjs.condition_admin');
}
/**
* Cancel the action.
*
* @param array $form
* The form.
* @param \Drupal\Core\Form\FormStateInterface $form_state
* The state of forms.
*/
public function cancelCondition(array &$form, FormStateInterface $form_state) {
$form_state
->setRedirect('abjs.condition_admin');
}
/**
* Delete item.
*
* @param array $form
* The form.
* @param \Drupal\Core\Form\FormStateInterface $form_state
* The state of forms.
*/
public function deleteCondition(array &$form, FormStateInterface $form_state) {
$form_state
->setRedirect('abjs.condition_delete_confirm_form', [
'cid' => $form_state
->getValue('cid'),
]);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
AbjsConditionForm:: |
protected | property | Current account user. | |
AbjsConditionForm:: |
protected | property | Provides database connection service. | |
AbjsConditionForm:: |
protected | property | Provides a class for obtaining system time. | |
AbjsConditionForm:: |
public | function |
Building the form. Overrides FormInterface:: |
|
AbjsConditionForm:: |
public | function | Cancel the action. | |
AbjsConditionForm:: |
public static | function |
Instantiates a new instance of this class. Overrides FormBase:: |
|
AbjsConditionForm:: |
public | function | Delete item. | |
AbjsConditionForm:: |
public | function |
Returns a unique string identifying the form. Overrides FormInterface:: |
|
AbjsConditionForm:: |
public | function | Save data. | |
AbjsConditionForm:: |
public | function |
Form submission handler. Overrides FormInterface:: |
|
AbjsConditionForm:: |
public | function | Class constructor. | |
DependencySerializationTrait:: |
protected | property | An array of entity type IDs keyed by the property name of their storages. | |
DependencySerializationTrait:: |
protected | property | An array of service IDs keyed by property name used for serialization. | |
DependencySerializationTrait:: |
public | function | 1 | |
DependencySerializationTrait:: |
public | function | 2 | |
FormBase:: |
protected | property | The config factory. | 1 |
FormBase:: |
protected | property | The request stack. | 1 |
FormBase:: |
protected | property | The route match. | |
FormBase:: |
protected | function | Retrieves a configuration object. | |
FormBase:: |
protected | function | Gets the config factory for this form. | 1 |
FormBase:: |
private | function | Returns the service container. | |
FormBase:: |
protected | function | Gets the current user. | |
FormBase:: |
protected | function | Gets the request object. | |
FormBase:: |
protected | function | Gets the route match. | |
FormBase:: |
protected | function | Gets the logger for a specific channel. | |
FormBase:: |
protected | function |
Returns a redirect response object for the specified route. Overrides UrlGeneratorTrait:: |
|
FormBase:: |
public | function | Resets the configuration factory. | |
FormBase:: |
public | function | Sets the config factory for this form. | |
FormBase:: |
public | function | Sets the request stack object to use. | |
FormBase:: |
public | function |
Form validation handler. Overrides FormInterface:: |
62 |
LinkGeneratorTrait:: |
protected | property | The link generator. | 1 |
LinkGeneratorTrait:: |
protected | function | Returns the link generator. | |
LinkGeneratorTrait:: |
protected | function | Renders a link to a route given a route name and its parameters. | |
LinkGeneratorTrait:: |
public | function | Sets the link generator service. | |
LoggerChannelTrait:: |
protected | property | The logger channel factory service. | |
LoggerChannelTrait:: |
protected | function | Gets the logger for a specific channel. | |
LoggerChannelTrait:: |
public | function | Injects the logger channel factory. | |
MessengerTrait:: |
protected | property | The messenger. | 29 |
MessengerTrait:: |
public | function | Gets the messenger. | 29 |
MessengerTrait:: |
public | function | Sets the messenger. | |
RedirectDestinationTrait:: |
protected | property | The redirect destination service. | 1 |
RedirectDestinationTrait:: |
protected | function | Prepares a 'destination' URL query parameter for use with \Drupal\Core\Url. | |
RedirectDestinationTrait:: |
protected | function | Returns the redirect destination service. | |
RedirectDestinationTrait:: |
public | function | Sets the redirect destination service. | |
StringTranslationTrait:: |
protected | property | The string translation service. | 1 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. | |
UrlGeneratorTrait:: |
protected | property | The url generator. | |
UrlGeneratorTrait:: |
protected | function | Returns the URL generator service. | |
UrlGeneratorTrait:: |
public | function | Sets the URL generator service. | |
UrlGeneratorTrait:: |
protected | function | Generates a URL or path for a specific route based on the given parameters. |