class BulkNodeExport in Node export 8
Same name in this branch
- 8 src/Form/BulkNodeExport.php \Drupal\node_Export\Form\BulkNodeExport
- 8 src/Plugin/Action/BulkNodeExport.php \Drupal\node_export\Plugin\Action\BulkNodeExport
Provides a Node Export form.
Hierarchy
- class \Drupal\Core\Form\FormBase implements ContainerInjectionInterface, FormInterface uses DependencySerializationTrait, LoggerChannelTrait, MessengerTrait, LinkGeneratorTrait, RedirectDestinationTrait, UrlGeneratorTrait, StringTranslationTrait
- class \Drupal\node_Export\Form\BulkNodeExport
Expanded class hierarchy of BulkNodeExport
File
- src/
Form/ BulkNodeExport.php, line 17
Namespace
Drupal\node_Export\FormView source
class BulkNodeExport extends FormBase {
/**
* Set a var to make stepthrough form.
*
* @var step
*/
protected $step = 1;
/**
* Keep track of user input.
*
* @var userInput
*/
protected $userInput = [];
/**
* Tempstorage.
*
* @var tempStoreFactory
*/
protected $tempStoreFactory;
/**
* Session.
*
* @var sessionManager
*/
private $sessionManager;
/**
* User.
*
* @var currentUser
*/
private $currentUser;
/**
* The route builder.
*
* @var \Drupal\Core\Routing\RouteBuilderInterface
*/
protected $routeBuilder;
/**
* Constructs a \Drupal\node_export\Form\BulkNodeExport.
*
* @param \Drupal\Core\TempStore\PrivateTempStoreFactory $temp_store_factory
* Temp storage.
* @param \Drupal\Core\Session\SessionManagerInterface $session_manager
* Session.
* @param \Drupal\Core\Session\AccountInterface $current_user
* User.
* @param \Drupal\Core\Routing\RouteBuilderInterface $route_builder
* Route.
*/
public function __construct(PrivateTempStoreFactory $temp_store_factory, SessionManagerInterface $session_manager, AccountInterface $current_user, RouteBuilderInterface $route_builder) {
$this->tempStoreFactory = $temp_store_factory;
$this->sessionManager = $session_manager;
$this->currentUser = $current_user;
$this->routeBuilder = $route_builder;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container) {
return new static($container
->get('tempstore.private'), $container
->get('session_manager'), $container
->get('current_user'), $container
->get('router.builder'));
}
/**
* {@inheritdoc}
*/
public function getFormId() {
return 'bulk_export_form';
}
/**
* {@inheritdoc}
*/
public function buildForm(array $form, FormStateInterface $form_state) {
$this
->messenger()
->addWarning($this
->t('This module is experiemental. PLEASE do not use on production databases without prior testing and a complete database dump.'));
$this->userInput['entities'] = $this->tempStoreFactory
->get('node_export_ids')
->get($this->currentUser
->id());
$json = NodeExport::export(array_keys($this->userInput['entities']), 'json', FALSE);
$form['export_code'] = [
'#type' => 'textarea',
'#value' => $json,
'#title' => $this
->t('Node Export Code is :'),
'#rows' => '15',
];
$form['submit'] = [
'#type' => 'submit',
'#value' => $this
->t('Download'),
];
return $form;
}
/**
* {@inheritdoc}
*/
public function submitForm(array &$form, FormStateInterface $form_state) {
$data = $form_state
->getValue('export_code');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename=' . basename('node.json'));
header('Expires: 0');
header('Cache-Control: must-revalidate');
header('Pragma: public');
header('Content-Length: ' . filesize('node.json'));
print $data;
exit;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
BulkNodeExport:: |
private | property | User. | |
BulkNodeExport:: |
protected | property | The route builder. | |
BulkNodeExport:: |
private | property | Session. | |
BulkNodeExport:: |
protected | property | Set a var to make stepthrough form. | |
BulkNodeExport:: |
protected | property | Tempstorage. | |
BulkNodeExport:: |
protected | property | Keep track of user input. | |
BulkNodeExport:: |
public | function |
Form constructor. Overrides FormInterface:: |
|
BulkNodeExport:: |
public static | function |
Instantiates a new instance of this class. Overrides FormBase:: |
|
BulkNodeExport:: |
public | function |
Returns a unique string identifying the form. Overrides FormInterface:: |
|
BulkNodeExport:: |
public | function |
Form submission handler. Overrides FormInterface:: |
|
BulkNodeExport:: |
public | function | Constructs a \Drupal\node_export\Form\BulkNodeExport. | |
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. |