Download the PHP package bigfoot/core-bundle without Composer
On this page you can find all versions of the php package bigfoot/core-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package core-bundle
BigfootCoreBundle
This is the core bundle for the Bigfoot administration interface. Provides core features and helpers to integrate BackOffice features through bundles.
Installation
Use composer :
php composer.phar require bigfoot/core-bundle
Register the bundle in your app/AppKernel.php file :
$bundles = array(
...
new Bigfoot\Bundle\CoreBundle\BigfootCoreBundle(),
...
);
Usage
The administration interface is then available at /admin. For now, it does nothing. Add Bigfoot bundles or create your own to really get started !
How to create a widget
Create a class extends Bigfoot\Bundle\CoreBundle\Model\AbstractWidget
.
Define in your new class the method 'renderContent()'. This method must return html code of your widget.
Add a record in widget_backoffice table with corresponding values : name : Fullname of your class title : Title display in widget header, this field is translatable
Add 2 records in widget_backoffice_parameter table. One with these values : name: order value: Order number you want for your widget widget_id: Record ID of your widget in widget_backoffice table user_id: (Optionnal) If defined, this parameter will be used only for this user
Another with these values : name: width value: number of columns use by your widget widget_id: Record ID of your widget in widget_backoffice table user_id: (Optionnal) If defined, this parameter will be used only for this user
How to overload Symfony Router
Add these following lines to your front config:
BigfootFile annotation :
BigfootFile uses symfony's file upload system with its 2 properties for one file.
@Bigfoot\Bundle\CoreBundle\Annotation\Bigfoot\File : apply this annotation on the property that represents the form field. Use its filePathProperty option (required) to connect the other property.
Don't forget to create an "updated" field, and to update it before flushing with a PreFlush listener. Otherwise the file won't update if you don't change anything else in the form.
Exemple :
Use it in your Form :
If you don't define any deleteRoute, the deleteLink won't appear
Get the file in front :
The second parameter(default false) defines whether or not the filter returns an absolute path
Generate a csv in Crud Index page :
Add the method getCsvFields into your extended CrudController controller:
If you want to display a field of your entity, use:
If you want to display a field of an external entity, use:
If you want to display a field of OneToMany relation, use:
Improve the speed of your 'Edit forms' by setting a form by tab:
Add the method getFormTypes into your extended CrudController controller which return an array compound of arrays of 'label' (labels of tabs) and 'form', names of the FormType services.
Make sure you added an index parameter to your editAction of your controller:
That's it!
All versions of core-bundle with dependencies
symfony/framework-bundle Version ~2.5
knplabs/knp-menu-bundle Version 2.0.*@dev
knplabs/knp-paginator-bundle Version ~2.4.1
friendsofsymfony/jsrouting-bundle Version ~1.1
liip/imagine-bundle Version ~0.6