sedona/sbo

Sedona Back-Office bundles

Maintainers

👁 pasdeloup

Package info

github.com/Sedona-Solutions/sedona-sbo

pkg:composer/sedona/sbo

Statistics

Installs: 537

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 9

2.0.1 2020-10-19 10:52 UTC

MIT 68610f4de66d334fbfa51851069050683565c466

  • Sedona <contact.woop@sedona.fr>

This package is not auto-updated.

Last update: 2026-06-27 06:14:02 UTC


README

Installation

Requirements

  • Symfony 2.7 mini, compatible with Symfony 3

Step 1: Download the Bundles

Open a command console, enter your project directory and execute the following command to download the latest version of this bundle:

$ composer require "sedona/sbo" "dev-master"

This command requires you to have Composer installed globally, as explained in the installation chapter of the Composer documentation.

### Step 2: Enable the Bundles

Then, enable the bundle by adding it to the list of registered bundles in the app/AppKernel.php file of your project, if you don't use them already, you also need to add a few more bundles:

<?php
// app/AppKernel.php

// ...
class AppKernel extends Kernel
{
 public function registerBundles()
 {
 $bundles = array(
 // ...

 new FOS\JsRoutingBundle\FOSJsRoutingBundle(),

 new JMS\DiExtraBundle\JMSDiExtraBundle($this),
 new JMS\AopBundle\JMSAopBundle(),

 new Sedona\SBORuntimeBundle\SedonaSBORuntimeBundle(),
 new Sg\DatatablesBundle\SgDatatablesBundle(),
 new Avanzu\AdminThemeBundle\AvanzuAdminThemeBundle(),
 new Exercise\HTMLPurifierBundle\ExerciseHTMLPurifierBundle(),
 );

 if (in_array($this->getEnvironment(), array('dev', 'test'), true)) {
 // ...
 $bundles[] = new Sedona\SBOGeneratorBundle\SedonaSBOGeneratorBundle();
 }
 // ...
 }

 // ...
}

### Step 3: Create a base layout

Create a template app/Resources/views/layout_admin.html.twig

 {% extends 'SedonaSBORuntimeBundle:layout:base-layout.html.twig' %}
 
 {% block avanzu_logo %}
 <a href="{{ path('admin_home') }}" class="logo">
 <img src="{{ asset('bundles/sedonasboadmintheme/images/sedona-logo.png') }}"/> Test SBO
 </a>
 {% endblock %}
 {% block title %}Administration{% endblock %} 
 {% block page_title %}Administration{% endblock %} 
 {% block page_subtitle %}Administration area{% endblock %}

Step 4: Add some basic configuration

Add in routing.yml

admin:
 resource: "@AppBundle/Controller/Admin"
 type: annotation
 prefix: /admin

fos_js_routing:
 resource: "@FOSJsRoutingBundle/Resources/config/routing/routing.xml"

Add in config.yml

jms_di_extra:
 locations:
 all_bundles: false
 bundles: [SedonaSBOTestBundle]
 directories: ["%kernel.root_dir%/../src"]

And activate translation in it by uncommenting

 translator: { fallback: "%locale%" }

Generator usage

php app/console sbo:generate:crud --entity SedonaSBOTestBundle:Track --with-write --overwrite

To be working, each Entity should have its __toString() method declared.

Association fields OneToMany are created but commented by default:

  • in datatable: before uncommenting, the column name should be changed (entity.name by default)
  • in form: only entities with few lines should be uncommented, for long datas, should be replaced by a select2

Credits

Sedona Back Office is created and maintained by Sedona http://www.sedona.fr

It is available under the MIT Licence, more details in the LICENCE file.

We would like to thanks the authors of the different libraries and bundle used in this solution.