Important
You are browsing the documentation for version 4.2 of OroCommerce, OroCRM and OroPlatform, which is no longer maintained. Read version 5.1 (the latest LTS version) of the Oro documentation to get up-to-date information.
See our Release Process documentation for more information on the currently supported and upcoming releases.
CRUD Operations¶
To let the users create new tasks and edit existing ones you need to perform several steps:
The Form Type¶
First, you need to create a form type that makes it possible to let the user enter all the data needed to describe a task:
namespace AppBundle\Form;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolver;
class TaskType extends AbstractType
{
public function buildForm(FormBuilderInterface $builder)
{
$builder
->add('subject')
->add('description')
->add('dueDate')
->add('priority')
;
}
public function configureOptions(OptionsResolver $resolver)
{
$resolver->setDefaults([
'data_class' => 'AppBundle\Entity\Task',
]);
}
}
See also
Learn more about form types in the Symfony documentation.
The Controllers¶
You then need to create a controller class that comes with two actions: one that is called when a new task should be created, and one that is able to fetch an existing task to let the user modify its data:
namespace AppBundle\Controller;
use AppBundle\Entity\Task;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Symfony\Component\HttpFoundation\Request;
/**
* @Route("/task")
*/
class TaskController extends Controller
{
/**
* @Route("/create", name="app_task_create")
* @Template("AppBundle:Task:update.html.twig")
*/
public function createAction(Request $request)
{
return $this->update(new Task(), $request);
}
/**
* @Route("/edit/{id}", name="app_task_update", requirements={"id"="\d+"})
* @Template("AppBundle:Task:update.html.twig")
*/
public function editAction(Task $task, Request $request)
{
return $this->update($task, $request);
}
private function update(Task $task, Request $request)
{
$form = $this->createForm(new TaskType(), $task);
return [
'entity' => $task,
'form' => $form->createView(),
];
}
}
Then, make sure that the controller is loaded in your routing configuration so that Symfony knows which controller needs to be called for particular routes:
app_task:
resource: '@AppBundle/Controller/TaskController.php'
type: annotation
The Template¶
The template that is responsible to display the form fields should extend the base template
OroUIBundle:actions:update.html.twig
from the OroUIBundle. This templates defines some basic blocks
that you can use. This way your own forms will provide the same look and feel as the ones coming
with OroPlatform:
{# extend the base template from the OroUIBundle #}
{% extends 'OroUIBundle:actions:update.html.twig' %}
{# reuse the form theme provided with OroPlatform #}
{% form_theme form with 'OroFormBundle:Form:fields.html.twig' %}
{# make the current task accessible with the task variable #}
{% set task = form.vars.value %}
{# choose the appropriate action depending on whether a task is created or modified #}
{# this variable needs to be named formAction as this is what the base template expects #}
{% if task.id %}
{% set formAction = path('app_task_update', { 'id': task.id }) %}
{% else %}
{% set formAction = path('app_task_create') %}
{% endif %}
{% block navButtons %}
{# the cancelButton() macro creates a button that discards the
entered data and leads the user to the linked controller #}
{{ UI.cancelButton(path('app_task_index')) }}
{# the dropdownSaveButton() macro offers a way to let the user select
between different options when saving an entity, the selected option
will be passed to the controller handling the request as an additonal
parameter #}
{{ UI.dropdownSaveButton({
'html': UI.saveAndCloseButton() ~ UI.saveAndStayButton()
}) }}
{% endblock navButtons %}
{% block pageHeader %}
{% if task.id %}
{% set breadcrumbs = {
'entity': task,
'indexPath': path('app_task_index'),
'indexLabel': 'Tasks',
'entityTitle': task.subject
} %}
{{ parent() }}
{% else %}
{% set title = 'oro.ui.create_entity'|trans({ '%entityName%': 'Task' }) %}
{{ include('OroUIBundle::page_title_block.html.twig', { title: title }) %}
{% endif %}
{% endblock pageHeader %}
{% block content_data %}
{% set id = 'task-edit' %}
{% set dataBlocks = [{
'title': 'General'|trans,
'class': 'active',
'subblocks': [{
'title': '',
'data': [
form_row(form.subject),
form_row(form.description),
form_row(form.dueDate),
form_row(form.priority),
]
}]
}]
%}
{# the data variable is a special variable that is used in the
parent content_data block to render the visual content "blocks"
of a page #}
{% set data = {
'formErrors': form_errors(form) ? form_errors(form) : null,
'dataBlocks': dataBlocks,
} %}
{{ parent() }}
{% endblock content_data %}
Linking the Data Grid¶
Finally, you need to link both actions on the page that displays the list of tasks:
1. Add a link to create new tasks
The base OroUIBundle:actions:index.html.twig
template from the OroUIBundle that you
already used to embed the data grid comes with a
pre-defined navButtons
block which you can use to add a button that links to the create task
action:
{% extends 'OroUIBundle:actions:index.html.twig' %}
{% set gridName = 'app-tasks-grid' %}
{% set pageTitle = 'Task' %}
{% block navButtons %}
<div class="btn-group">
{{ UI.addButton({
'path': path('app_task_create'),
'entity_label': 'Create a task',
}) }}
</div>
{% endblock %}
2. Link task rows to the related update action
To make it possible to modify each task you need to define a property that describes how the URL of the update action is built and then add this URL to the list of available actions in your data grid configuration:
datagrids:
app-tasks-grid:
# ...
properties:
id: ~
update_link:
type: url
route: app_task_update
params:
- id
# ...
actions:
# ...
edit:
type: navigate
label: Edit
link: update_link
icon: edit
Deleting Entities¶
You can delete a task either through the DELETE
operation available for all entities by default or through the customized one. When running DELETE
, ensure that your entity has a route from the routeName
option of the entity configuration.
You can delete an entity through the DELETE operation which is enabled by default for all entities. To run the operation, you need to ensure that your entity has the routeName
option of the entity configuration which will be used as a route name to redirect a user after the DELETE
operation (as in the example below).
@Config(
routeName="oro_task_index",
routeView="oro_task_view",
defaultValues={
"entity"={
"icon"="fa-tasks"
},
See the sample configuration of the default DELETE
operation in the Actions topic.
If the default configuration is not valid for your particular case, create your own operation that would inherit from the default one following the example:
DELETE:
exclude_entities:
- Oro\Bundle\CatalogBundle\Entity\Category
oro_catalog_category_delete:
extends: DELETE
replace:
- exclude_entities
- entities
- for_all_datagrids
- for_all_entities
for_all_datagrids: false
for_all_entities: false
entities:
- Oro\Bundle\CatalogBundle\Entity\Category
preconditions:
'@and':
- '@not_equal': [$.data.parentCategory, null]
Note
When creating your own operation, make sure to exclude the entity from the default operation. See more details on available operations and their configuration in the related article.