class ContentSelectForm in GatherContent 8.3
Class ContentUpdateSelectForm.
@package Drupal\gathercontent\Form
Hierarchy
- class \Drupal\Core\Form\FormBase implements ContainerInjectionInterface, FormInterface uses DependencySerializationTrait, LoggerChannelTrait, MessengerTrait, LinkGeneratorTrait, RedirectDestinationTrait, UrlGeneratorTrait, StringTranslationTrait
- class \Drupal\gathercontent\Form\MultistepFormBase
- class \Drupal\gathercontent\Form\ContentSelectForm
- class \Drupal\gathercontent\Form\MultistepFormBase
Expanded class hierarchy of ContentSelectForm
File
- src/
Form/ ContentSelectForm.php, line 17
Namespace
Drupal\gathercontent\FormView source
class ContentSelectForm extends MultistepFormBase {
/**
* {@inheritdoc}
*/
public function getFormId() {
return 'content_select_form';
}
/**
* {@inheritdoc}
*/
public function buildForm(array $form, FormStateInterface $form_state) {
$form = parent::buildForm($form, $form_state);
$created_mapping_ids = Mapping::loadMultiple();
$projects = $contents = [];
$mapping_array = [];
foreach ($created_mapping_ids as $mapping) {
/** @var \Drupal\gathercontent\Entity\Mapping $mapping */
if ($mapping
->hasMapping()) {
$projects[$mapping
->getGathercontentProjectId()] = $mapping
->getGathercontentProject();
$mapping_array[$mapping
->id()] = [
'gc_template' => $mapping
->getGathercontentTemplate(),
'ct' => $mapping
->getContentTypeName(),
];
}
}
$node_ids = $this->entityQuery
->get('node')
->condition('gc_id', NULL, 'IS NOT')
->condition('gc_mapping_id', NULL, 'IS NOT')
->execute();
$nodes = Node::loadMultiple($node_ids);
$selected_projects = [];
$content_obj = new Content();
foreach ($created_mapping_ids as $mapping) {
if (!in_array($mapping
->getGathercontentProjectId(), $selected_projects)) {
$selected_projects[] = $mapping
->getGathercontentProjectId();
$content = $content_obj
->getContents($mapping
->getGathercontentProjectId());
foreach ($content as $c) {
$single_content = [];
$single_content['gc_updated'] = $c->updated_at;
$single_content['status'] = $c->status;
$single_content['name'] = $c->name;
$single_content['project_id'] = $c->project_id;
$contents[$c->id] = $single_content;
}
}
}
$form['filter'] = [
'#type' => 'markup',
'#markup' => '<div class="gc-table--filter-wrapper clearfix"></div>',
'#weight' => 0,
];
$form['counter'] = [
'#type' => 'markup',
'#markup' => '<div class="gc-table--counter"></div>',
'#weight' => 1,
];
$base_url = 'http://' . \Drupal::config('gathercontent.settings')
->get('gathercontent_urlkey') . '.gathercontent.com/item/';
$content_table = [];
foreach ($nodes as $item) {
if (!isset($contents[$item->gc_id->value]['status']->data->name)) {
// Don't show deleted items or items which belong to another account.
continue;
}
/** @var \Drupal\node\Entity\Node $item */
$content_table[$item
->id()] = [
'status' => [
'data' => [
'color' => [
'#type' => 'html_tag',
'#tag' => 'div',
'#value' => ' ',
'#attributes' => [
'style' => 'width:20px; height: 20px; float: left; margin-right: 5px; background: ' . $contents[$item->gc_id->value]['status']->data->color,
],
],
'label' => [
'#plain_text' => $contents[$item->gc_id->value]['status']->data->name,
],
],
'class' => [
'gc-item',
'status-item',
],
],
'gathercontent_project' => [
'data' => $projects[$contents[$item->gc_id->value]['project_id']],
],
'title' => [
'data' => $item
->getTitle(),
'class' => [
'gc-item',
'gc-item--name',
],
],
'gathercontent_title' => [
'data' => $contents[$item->gc_id->value]['name'],
],
'gathercontent_updated' => [
'data' => date('F d, Y - H:i', strtotime($contents[$item->gc_id->value]['gc_updated']->date)),
'class' => [
'gc-item',
'gc-item-date',
],
'data-date' => date('Y-m-d.H:i:s', strtotime($contents[$item->gc_id->value]['gc_updated']->date)),
],
'drupal_updated' => [
'data' => date('F d, Y - H:i', $item
->getChangedTime()),
'class' => [
'gc-item',
'gc-item-date',
],
'data-date' => date('Y-m-d.H:i:s', $item
->getChangedTime()),
],
'content_type' => [
'data' => $mapping_array[$item->gc_mapping_id->value]['ct'],
],
'gathercontent_template' => [
'data' => $mapping_array[$item->gc_mapping_id->value]['gc_template'],
'class' => [
'template-name-item',
],
],
'drupal_open' => [
'data' => Link::fromTextAndUrl($this
->t('Open'), Url::fromUri('entity:node/' . $item
->id()))
->toRenderable(),
],
'gathercontent_open' => [
'data' => Link::fromTextAndUrl($this
->t('Open'), Url::fromUri($base_url . $item->gc_id->value))
->toRenderable(),
],
];
}
$header = [
'status' => $this
->t('Status'),
'gathercontent_project' => $this
->t('GatherContent project'),
'title' => $this
->t('Item Name'),
'gathercontent_title' => $this
->t('GatherContent item name'),
'drupal_updated' => $this
->t('Last updated in Drupal'),
'gathercontent_updated' => $this
->t('Last updated in GatherContent'),
'content_type' => $this
->t('Content type name'),
'gathercontent_template' => $this
->t('GatherContent template'),
'drupal_open' => $this
->t('Open in Drupal'),
'gathercontent_open' => $this
->t('Open in GatherContent'),
];
$form['nodes'] = [
'#weight' => 2,
'#type' => 'tableselect',
'#header' => $header,
'#options' => $content_table,
'#empty' => t('No content available.'),
'#default_value' => $this->store
->get('nodes') ? $this->store
->get('nodes') : [],
'#attributes' => [
'class' => [
'tablesorter-enabled',
],
],
'#attached' => [
'library' => [
'gathercontent/tablesorter-mottie',
'gathercontent/filter',
],
'drupalSettings' => [
'gatherContent' => [
'tableSorterOptionOverrides' => [
'headers' => [
'0' => [
'sorter' => FALSE,
],
'9' => [
'sorter' => FALSE,
],
'10' => [
'sorter' => FALSE,
],
],
],
],
],
],
];
$form['actions']['submit']['#value'] = $this
->t('Next');
return $form;
}
/**
* {@inheritdoc}
*/
public function submitForm(array &$form, FormStateInterface $form_state) {
// Do something.
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ContentSelectForm:: |
public | function |
Form constructor. Overrides MultistepFormBase:: |
|
ContentSelectForm:: |
public | function |
Returns a unique string identifying the form. Overrides FormInterface:: |
2 |
ContentSelectForm:: |
public | function |
Form submission handler. Overrides MultistepFormBase:: |
2 |
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. | |
MultistepFormBase:: |
protected | property | Drupal\Core\Datetime\DateFormatter definition. | |
MultistepFormBase:: |
protected | property | Drupal\Core\Entity\EntityManager definition. | |
MultistepFormBase:: |
protected | property | Drupal\Core\Entity\Query\QueryFactory definition. | |
MultistepFormBase:: |
protected | property | Drupal\user\PrivateTempStore definition. | |
MultistepFormBase:: |
protected | property | Drupal\user\PrivateTempStoreFactory definition. | |
MultistepFormBase:: |
public static | function |
Instantiates a new instance of this class. Overrides FormBase:: |
|
MultistepFormBase:: |
protected | function | Helper removing all keys from the store collection used for multistep form. | |
MultistepFormBase:: |
public | function | Constructor for class. | |
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. |