Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
project
dropzonejs
Commits
48c1b425
Commit
48c1b425
authored
Feb 15, 2017
by
chr.fritsch
Committed by
chr.fritsch
Feb 15, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue
#2830476
by chr.fritsch, svendecabooter: Select form mode for IEF Widget
parent
2bd32ecf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
89 additions
and
1 deletion
+89
-1
modules/eb_widget/src/Plugin/EntityBrowser/Widget/InlineEntityFormMediaWidget.php
...ugin/EntityBrowser/Widget/InlineEntityFormMediaWidget.php
+89
-1
No files found.
modules/eb_widget/src/Plugin/EntityBrowser/Widget/InlineEntityFormMediaWidget.php
View file @
48c1b425
...
...
@@ -2,12 +2,21 @@
namespace
Drupal\dropzonejs_eb_widget\Plugin\EntityBrowser\Widget
;
use
Drupal\Core\Entity\EntityDisplayRepositoryInterface
;
use
Drupal\Core\Entity\EntityTypeManagerInterface
;
use
Drupal\Core\Extension\ModuleHandlerInterface
;
use
Drupal\Core\Form\FormStateInterface
;
use
Drupal\Core\Render\Element
;
use
Drupal\Core\Session\AccountProxyInterface
;
use
Drupal\Core\Utility\Token
;
use
Drupal\dropzonejs\DropzoneJsUploadSaveInterface
;
use
Drupal\dropzonejs\Events\DropzoneMediaEntityCreateEvent
;
use
Drupal\dropzonejs\Events\Events
;
use
Drupal\entity_browser
\
WidgetBase
;
use
Drupal\entity_browser
\
WidgetValidationManager
;
use
Drupal\inline_entity_form
\
Element\InlineEntityForm
;
use
Symfony\Component\DependencyInjection\ContainerInterface
;
use
Symfony\Component\EventDispatcher\EventDispatcherInterface
;
/**
* Provides an Entity Browser widget that uploads and edit new files.
...
...
@@ -20,6 +29,71 @@ use Drupal\inline_entity_form\Element\InlineEntityForm;
*/
class
InlineEntityFormMediaWidget
extends
MediaEntityDropzoneJsEbWidget
{
/**
* The entity display repository.
*
* @var \Drupal\Core\Entity\EntityDisplayRepositoryInterface
*/
protected
$entityDisplayRepository
;
/**
* Constructs widget plugin.
*
* @param array $configuration
* A configuration array containing information about the plugin instance.
* @param string $plugin_id
* The plugin_id for the plugin instance.
* @param mixed $plugin_definition
* The plugin implementation definition.
* @param \Symfony\Component\EventDispatcher\EventDispatcherInterface $event_dispatcher
* Event dispatcher service.
* @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager
* The entity type manager service.
* @param \Drupal\entity_browser\WidgetValidationManager $validation_manager
* The Widget Validation Manager service.
* @param \Drupal\dropzonejs\DropzoneJsUploadSaveInterface $dropzonejs_upload_save
* The upload saving dropzonejs service.
* @param \Drupal\Core\Session\AccountProxyInterface $current_user
* The current user service.
* @param \Drupal\Core\Extension\ModuleHandlerInterface $module_handler
* The module handler service.
* @param \Drupal\Core\Entity\EntityDisplayRepositoryInterface $entity_display_repository
* The entity display repository service.
*/
public
function
__construct
(
array
$configuration
,
$plugin_id
,
$plugin_definition
,
EventDispatcherInterface
$event_dispatcher
,
EntityTypeManagerInterface
$entity_type_manager
,
WidgetValidationManager
$validation_manager
,
DropzoneJsUploadSaveInterface
$dropzonejs_upload_save
,
AccountProxyInterface
$current_user
,
Token
$token
,
ModuleHandlerInterface
$module_handler
,
EntityDisplayRepositoryInterface
$entity_display_repository
)
{
parent
::
__construct
(
$configuration
,
$plugin_id
,
$plugin_definition
,
$event_dispatcher
,
$entity_type_manager
,
$validation_manager
,
$dropzonejs_upload_save
,
$current_user
,
$token
,
$module_handler
);
$this
->
entityDisplayRepository
=
$entity_display_repository
;
}
/**
* {@inheritdoc}
*/
public
static
function
create
(
ContainerInterface
$container
,
array
$configuration
,
$plugin_id
,
$plugin_definition
)
{
return
new
static
(
$configuration
,
$plugin_id
,
$plugin_definition
,
$container
->
get
(
'event_dispatcher'
),
$container
->
get
(
'entity_type.manager'
),
$container
->
get
(
'plugin.manager.entity_browser.widget_validation'
),
$container
->
get
(
'dropzonejs.upload_save'
),
$container
->
get
(
'current_user'
),
$container
->
get
(
'token'
),
$container
->
get
(
'module_handler'
),
$container
->
get
(
'entity_display.repository'
)
);
}
/**
* {@inheritdoc}
*/
public
function
defaultConfiguration
()
{
return
[
'form_mode'
=>
'default'
,
]
+
parent
::
defaultConfiguration
();
}
/**
* {@inheritdoc}
*/
...
...
@@ -65,7 +139,7 @@ class InlineEntityFormMediaWidget extends MediaEntityDropzoneJsEbWidget {
'#entity_type'
=>
$entity
->
getEntityTypeId
(),
'#bundle'
=>
$entity
->
bundle
(),
'#default_value'
=>
$entity
,
'#form_mode'
=>
'media_browser'
,
'#form_mode'
=>
$this
->
configuration
[
'form_mode'
]
,
];
}
}
...
...
@@ -181,4 +255,18 @@ class InlineEntityFormMediaWidget extends MediaEntityDropzoneJsEbWidget {
$form_state
->
set
(
'uploaded_entities'
,
[]);
}
/**
* {@inheritdoc}
*/
public
function
buildConfigurationForm
(
array
$form
,
FormStateInterface
$form_state
)
{
$form
=
parent
::
buildConfigurationForm
(
$form
,
$form_state
);
$form
[
'form_mode'
]
=
[
'#type'
=>
'select'
,
'#title'
=>
$this
->
t
(
'Form mode'
),
'#options'
=>
$this
->
entityDisplayRepository
->
getFormModeOptions
(
'media'
),
'#default_value'
=>
$this
->
configuration
[
'form_mode'
],
];
return
$form
;
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment