public static function MysqlDate::create in Views Custom Table 8
Same name in this branch
- 8 src/Plugin/views/filter/MysqlDate.php \Drupal\view_custom_table\Plugin\views\filter\MysqlDate::create()
- 8 src/Plugin/views/field/MysqlDate.php \Drupal\view_custom_table\Plugin\views\field\MysqlDate::create()
Same name and namespace in other branches
- 9.0.x src/Plugin/views/field/MysqlDate.php \Drupal\view_custom_table\Plugin\views\field\MysqlDate::create()
Creates an instance of the plugin.
Parameters
\Symfony\Component\DependencyInjection\ContainerInterface $container: The container to pull out services used in the plugin.
array $configuration: A configuration array containing information about the plugin instance.
string $plugin_id: The plugin ID for the plugin instance.
mixed $plugin_definition: The plugin implementation definition.
Return value
static Returns an instance of this plugin.
Overrides PluginBase::create
File
- src/
Plugin/ views/ field/ MysqlDate.php, line 59
Class
- MysqlDate
- A handler to provide a field that is completely custom by the administrator.
Namespace
Drupal\view_custom_table\Plugin\views\fieldCode
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
return new static($configuration, $plugin_id, $plugin_definition, $container
->get('date.formatter'), $container
->get('entity.manager')
->getStorage('date_format'));
}