-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update jstree actions #11
base: master
Are you sure you want to change the base?
Conversation
…de tree interface ) to be able to create a node in the root dir with contextMenu
…textMenu of JsTree
Node selecting when refreshing working. Upload asset data-url updating when refreshing.
Refractored js tree component.
fix indent
|
||
public function getForm() | ||
{ | ||
// This method is not needed to delete entities. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The method MUST return a FormInterface
object
|
||
public function getFormHandler() | ||
{ | ||
// This method is not needed to delete entities. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The method MUST return a ApiFormHandler
object
|
||
public function getManager() | ||
{ | ||
return $this->get('kiboko_dam.document_manager.api'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pass the service in the DI
|
||
public function getFormHandler() | ||
{ | ||
// This method is not needed to delete entities. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The method MUST return a ApiFormHandler
object
|
||
public function getForm() | ||
{ | ||
// This method is not needed to delete entities. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The method MUST return a FormInterface
object
@@ -44,6 +44,7 @@ public function __construct(FormInterface $form, RequestStack $requestStack, Ent | |||
*/ | |||
public function process(Document $entity, DocumentNodeInterface $node) | |||
{ | |||
//FIXME:: Implement FormHandlerInterface |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix issue
$names->add($nameToApply); | ||
|
||
$slugs = new ArrayCollection(); | ||
$slugs->add($nameToApply); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The LocalizedFallbackValue
MUST NOT be the same entity for both fields
// e.preventDefault(); | ||
// },false); | ||
|
||
$(".drop-target").find('*').addBack().on( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Check consequences of find('*')
call
|
||
public function getManager() | ||
{ | ||
return $this->get('kiboko.document_node_manager.api'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pass the service in the DI
…ndle into update-jstree-actions
No description provided.