Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
entity
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
drupal.org
entity
Commits
0bf0d39a
Commit
0bf0d39a
authored
9 years ago
by
Daniel Wehner
Browse files
Options
Downloads
Patches
Plain Diff
Add a content entity form which allows to set revisions
parent
ef00e241
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/Entity/RevisionableEntityBundleInterface.php
+22
-0
22 additions, 0 deletions
src/Entity/RevisionableEntityBundleInterface.php
src/Form/ContentEntityFormWithRevisions.php
+151
-0
151 additions, 0 deletions
src/Form/ContentEntityFormWithRevisions.php
with
173 additions
and
0 deletions
src/Entity/RevisionableEntityBundleInterface.php
0 → 100644
+
22
−
0
View file @
0bf0d39a
<?php
/**
* @file
* Contains \Drupal\entity\Entity\RevisionableEntityBundleInterface.
*/
namespace
Drupal\entity\Entity
;
use
Drupal\Core\Config\Entity\ConfigEntityInterface
;
interface
RevisionableEntityBundleInterface
extends
ConfigEntityInterface
{
/**
* Returns whether a new revision should be created by default.
*
* @return bool
* TRUE if a new revision should be created by default.
*/
public
function
shouldCreateNewRevision
();
}
This diff is collapsed.
Click to expand it.
src/Form/ContentEntityFormWithRevisions.php
0 → 100644
+
151
−
0
View file @
0bf0d39a
<?php
/**
* @file
* Contains \Drupal\entity\Form\ContentEntityFormWithRevisions.
*/
namespace
Drupal\entity\Form
;
use
Drupal\Core\Entity\ContentEntityForm
;
use
Drupal\Core\Form\FormStateInterface
;
use
Drupal\entity\Entity\RevisionableEntityBundleInterface
;
class
ContentEntityFormWithRevisions
extends
ContentEntityForm
{
/**
* The entity being used by this form.
*
* @var \Drupal\Core\Entity\EntityInterface|\Drupal\Core\Entity\RevisionableInterface|\Drupal\entity\Revision\EntityRevisionLogInterface
*/
protected
$entity
;
/**
* {@inheritdoc}
*/
protected
function
prepareEntity
()
{
parent
::
prepareEntity
();
$bundle_entity
=
$this
->
getBundleEntity
();
// Set up default values, if required.
if
(
!
$this
->
entity
->
isNew
())
{
$this
->
entity
->
setRevisionLogMessage
(
NULL
);
}
if
(
$bundle_entity
instanceof
RevisionableEntityBundleInterface
)
{
// Always use the default revision setting.
$this
->
entity
->
setNewRevision
(
$bundle_entity
&&
$bundle_entity
->
shouldCreateNewRevision
());
}
}
protected
function
getBundleEntity
()
{
$bundle_entity
=
$this
->
entity
->
{
$this
->
entity
->
getEntityType
()
->
getKey
(
'bundle'
)}
->
referencedEntities
()[
0
];
return
$bundle_entity
;
}
/**
* {@inheritdoc}
*/
public
function
form
(
array
$form
,
FormStateInterface
$form_state
)
{
$entity_type
=
$this
->
entity
->
getEntityType
();
$bundle_entity
=
$this
->
getBundleEntity
();
$account
=
$this
->
currentUser
();
if
(
$this
->
operation
==
'edit'
)
{
$form
[
'#title'
]
=
$this
->
t
(
'Edit %bundle_label @label'
,
[
'%bundle_label'
=>
$bundle_entity
?
$bundle_entity
->
label
()
:
''
,
'@label'
=>
$this
->
entity
->
label
(),
]);
}
$form
[
'advanced'
]
=
[
'#type'
=>
'vertical_tabs'
,
'#weight'
=>
99
,
];
// Add a log field if the "Create new revision" option is checked, or if the
// current user has the ability to check that option.
// @todo Could we autogenerate this form by using some widget on the
// revision info field.
$form
[
'revision_information'
]
=
[
'#type'
=>
'details'
,
'#title'
=>
$this
->
t
(
'Revision information'
),
// Open by default when "Create new revision" is checked.
'#open'
=>
$this
->
entity
->
isNewRevision
(),
'#group'
=>
'advanced'
,
'#weight'
=>
20
,
'#access'
=>
$this
->
entity
->
isNewRevision
()
||
$account
->
hasPermission
(
$entity_type
->
get
(
'admin_permission'
)),
];
$form
[
'revision_information'
][
'revision'
]
=
[
'#type'
=>
'checkbox'
,
'#title'
=>
$this
->
t
(
'Create new revision'
),
'#default_value'
=>
$this
->
entity
->
isNewRevision
(),
'#access'
=>
$account
->
hasPermission
(
$entity_type
->
get
(
'admin_permission'
)),
];
// Check the revision log checkbox when the log textarea is filled in.
// This must not happen if "Create new revision" is enabled by default,
// since the state would auto-disable the checkbox otherwise.
if
(
!
$this
->
entity
->
isNewRevision
())
{
$form
[
'revision_information'
][
'revision'
][
'#states'
]
=
[
'checked'
=>
[
'textarea[name="revision_log"]'
=>
[
'empty'
=>
FALSE
],
],
];
}
$form
[
'revision_information'
][
'revision_log'
]
=
[
'#type'
=>
'textarea'
,
'#title'
=>
$this
->
t
(
'Revision log message'
),
'#rows'
=>
4
,
'#default_value'
=>
$this
->
entity
->
getRevisionLogMessage
(),
'#description'
=>
$this
->
t
(
'Briefly describe the changes you have made.'
),
];
return
parent
::
form
(
$form
,
$form_state
);
}
/**
* {@inheritdoc}
*/
public
function
save
(
array
$form
,
FormStateInterface
$form_state
)
{
// Save as a new revision if requested to do so.
if
(
!
$form_state
->
isValueEmpty
(
'revision'
))
{
$this
->
entity
->
setNewRevision
();
}
$insert
=
$this
->
entity
->
isNew
();
$this
->
entity
->
save
();
$context
=
[
'@type'
=>
$this
->
entity
->
bundle
(),
'%info'
=>
$this
->
entity
->
label
()];
$logger
=
$this
->
logger
(
$this
->
entity
->
id
());
$bundle_entity
=
$this
->
getBundleEntity
();
$t_args
=
[
'@type'
=>
$bundle_entity
?
$bundle_entity
->
label
()
:
'None'
,
'%info'
=>
$this
->
entity
->
label
()];
if
(
$insert
)
{
$logger
->
notice
(
'@type: added %info.'
,
$context
);
drupal_set_message
(
$this
->
t
(
'@type %info has been created.'
,
$t_args
));
}
else
{
$logger
->
notice
(
'@type: updated %info.'
,
$context
);
drupal_set_message
(
$this
->
t
(
'@type %info has been updated.'
,
$t_args
));
}
if
(
$this
->
entity
->
id
())
{
$form_state
->
setValue
(
'id'
,
$this
->
entity
->
id
());
$form_state
->
set
(
'id'
,
$this
->
entity
->
id
());
$form_state
->
setRedirectUrl
(
$this
->
entity
->
urlInfo
(
'collection'
));
}
else
{
// In the unlikely case something went wrong on save, the entity will be
// rebuilt and entity form redisplayed.
drupal_set_message
(
$this
->
t
(
'The entity could not be saved.'
),
'error'
);
$form_state
->
setRebuild
();
}
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment