Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
D
dropzonejs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Custom Issue Tracker
Custom Issue Tracker
Labels
Merge Requests
1
Merge Requests
1
Requirements
Requirements
List
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Analytics
Analytics
Code Review
Insights
Issue
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
project
dropzonejs
Commits
691a3272
Commit
691a3272
authored
Nov 04, 2019
by
chr.fritsch
Committed by
chr.fritsch
Nov 04, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue
#3086804
by chr.fritsch: Too few arguments to function DropzoneJsEbWidget::__construct
parent
4e9f2b6f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
62 additions
and
129 deletions
+62
-129
modules/eb_widget/src/Plugin/EntityBrowser/Widget/DropzoneJsEbWidget.php
...et/src/Plugin/EntityBrowser/Widget/DropzoneJsEbWidget.php
+39
-37
modules/eb_widget/src/Plugin/EntityBrowser/Widget/InlineEntityFormMediaWidget.php
...ugin/EntityBrowser/Widget/InlineEntityFormMediaWidget.php
+11
-47
modules/eb_widget/src/Plugin/EntityBrowser/Widget/MediaEntityDropzoneJsEbWidget.php
...in/EntityBrowser/Widget/MediaEntityDropzoneJsEbWidget.php
+12
-45
No files found.
modules/eb_widget/src/Plugin/EntityBrowser/Widget/DropzoneJsEbWidget.php
View file @
691a3272
...
...
@@ -7,16 +7,13 @@ use Drupal\Component\Utility\Environment;
use
Drupal\Component\Utility\NestedArray
;
use
Drupal\Core\Ajax\AjaxResponse
;
use
Drupal\Core\Ajax\InvokeCommand
;
use
Drupal\Core\Entity\EntityTypeManagerInterface
;
use
Drupal\Core\File\FileSystemInterface
;
use
Drupal\Core\Form\FormStateInterface
;
use
Drupal\Core\Session\AccountProxyInterface
;
use
Drupal\Core\Utility\Token
;
use
Drupal\dropzonejs\DropzoneJsUploadSaveInterface
;
use
Drupal\entity_browser
\
WidgetBase
;
use
Drupal\entity_browser
\
WidgetValidationManager
;
use
Symfony\Component\DependencyInjection\ContainerInterface
;
use
Symfony\Component\EventDispatcher\EventDispatcherInterface
;
/**
* Provides an Entity Browser widget that uploads new files.
...
...
@@ -59,51 +56,56 @@ class DropzoneJsEbWidget extends WidgetBase {
protected
$fileSystem
;
/**
* Constructs widget plugin.
* {@inheritdoc}
*/
public
static
function
create
(
ContainerInterface
$container
,
array
$configuration
,
$plugin_id
,
$plugin_definition
)
{
$widget
=
parent
::
create
(
$container
,
$configuration
,
$plugin_id
,
$plugin_definition
);
$widget
->
setDropzoneJsUploadSave
(
$container
->
get
(
'dropzonejs.upload_save'
));
$widget
->
setCurrentUser
(
$container
->
get
(
'current_user'
));
$widget
->
setToken
(
$container
->
get
(
'token'
));
$widget
->
setFileSystem
(
$container
->
get
(
'file_system'
));
return
$widget
;
}
/**
* Set the upload saving dropzonejs service.
*
* @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
* @param \Drupal\dropzonejs\DropzoneJsUploadSaveInterface $dropzoneJsUploadSave
* The upload saving dropzonejs service.
* @param \Drupal\Core\Session\AccountProxyInterface $current_user
*/
protected
function
setDropzoneJsUploadSave
(
DropzoneJsUploadSaveInterface
$dropzoneJsUploadSave
)
{
$this
->
dropzoneJsUploadSave
=
$dropzoneJsUploadSave
;
}
/**
* Set the current user service.
*
* @param \Drupal\Core\Session\AccountProxyInterface $currentUser
* The current user service.
*/
protected
function
setCurrentUser
(
AccountProxyInterface
$currentUser
)
{
$this
->
currentUser
=
$currentUser
;
}
/**
* Set the token service.
*
* @param \Drupal\Core\Utility\Token $token
* The token 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
,
FileSystemInterface
$fileSystem
)
{
parent
::
__construct
(
$configuration
,
$plugin_id
,
$plugin_definition
,
$event_dispatcher
,
$entity_type_manager
,
$validation_manager
);
$this
->
dropzoneJsUploadSave
=
$dropzonejs_upload_save
;
$this
->
currentUser
=
$current_user
;
protected
function
setToken
(
Token
$token
)
{
$this
->
token
=
$token
;
$this
->
fileSystem
=
$fileSystem
;
}
/**
* {@inheritdoc}
* Set the filesystem service.
*
* @param \Drupal\Core\File\FileSystemInterface $fileSystem
* The filesystem service.
*/
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
(
'file_system'
)
);
protected
function
setFileSystem
(
FileSystemInterface
$fileSystem
)
{
$this
->
fileSystem
=
$fileSystem
;
}
/**
...
...
modules/eb_widget/src/Plugin/EntityBrowser/Widget/InlineEntityFormMediaWidget.php
View file @
691a3272
...
...
@@ -3,20 +3,13 @@
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.
...
...
@@ -38,52 +31,23 @@ class InlineEntityFormMediaWidget extends MediaEntityDropzoneJsEbWidget {
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.
* {@inheritdoc}
*/
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
);
public
static
function
create
(
ContainerInterface
$container
,
array
$configuration
,
$plugin_id
,
$plugin_definition
)
{
$widget
=
parent
::
create
(
$container
,
$configuration
,
$plugin_id
,
$plugin_definition
);
$widget
->
setEntityDisplayRepository
(
$container
->
get
(
'entity_display.repository'
));
$this
->
entityDisplayRepository
=
$entity_display_repository
;
return
$widget
;
}
/**
* {@inheritdoc}
* Set the entity display repository service.
*
* @param \Drupal\Core\Entity\EntityDisplayRepositoryInterface $entityDisplayRepository
* The entity display repository service.
*/
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'
)
);
protected
function
setEntityDisplayRepository
(
EntityDisplayRepositoryInterface
$entityDisplayRepository
)
{
$this
->
entityDisplayRepository
=
$entityDisplayRepository
;
}
/**
...
...
modules/eb_widget/src/Plugin/EntityBrowser/Widget/MediaEntityDropzoneJsEbWidget.php
View file @
691a3272
...
...
@@ -2,18 +2,12 @@
namespace
Drupal\dropzonejs_eb_widget\Plugin\EntityBrowser\Widget
;
use
Drupal\Core\Entity\EntityTypeManagerInterface
;
use
Drupal\Core\Extension\ModuleHandlerInterface
;
use
Drupal\Core\Form\FormStateInterface
;
use
Drupal\Core\Link
;
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
\
WidgetValidationManager
;
use
Symfony\Component\DependencyInjection\ContainerInterface
;
use
Symfony\Component\EventDispatcher\EventDispatcherInterface
;
/**
* Provides an Entity Browser widget that uploads media entities.
...
...
@@ -38,50 +32,23 @@ class MediaEntityDropzoneJsEbWidget extends DropzoneJsEbWidget {
protected
$moduleHandler
;
/**
* 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 Token $token
* The token service.
* @param \Drupal\Core\Extension\ModuleHandlerInterface $module_handler
* The module handler service.
* {@inheritdoc}
*/
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
)
{
parent
::
__construct
(
$configuration
,
$plugin_id
,
$plugin_definition
,
$event_dispatcher
,
$entity_type_manager
,
$validation_manager
,
$dropzonejs_upload_save
,
$current_user
,
$token
);
$this
->
moduleHandler
=
$module_handler
;
public
static
function
create
(
ContainerInterface
$container
,
array
$configuration
,
$plugin_id
,
$plugin_definition
)
{
$widget
=
parent
::
create
(
$container
,
$configuration
,
$plugin_id
,
$plugin_definition
);
$widget
->
setModuleHandler
(
$container
->
get
(
'module_handler'
));
return
$widget
;
}
/**
* {@inheritdoc}
* Set the module handler service.
*
* @param \Drupal\Core\Extension\ModuleHandlerInterface $moduleHandler
* The module handler service.
*/
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'
)
);
protected
function
setModuleHandler
(
ModuleHandlerInterface
$moduleHandler
)
{
$this
->
moduleHandler
=
$moduleHandler
;
}
/**
...
...
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