Download the PHP package gbenitez/attribute-bundle without Composer

On this page you can find all versions of the php package gbenitez/attribute-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package attribute-bundle

Documentación Attributes

Agregar al composer.json:

Registrar los bundles en el AppKernel.php:

En el app/config/routing.yml agregar:

Agregar a la bd las tablas del bundle:

php app/console doctrine:database:create
php app/console doctrine:schema:update --force

Entity Attributes

column Descripción
name Nombre del campo
presentation Label del Campo presentación para el usuario
type Tipo de campo(checkbox, choice, money, number, percent, text, entity)
configuration Representa las opciones del campo
active Indica si el attributo estará activo para el formulario
targetEntity Indicara a que entity se agregara ese attribute
position Es el encargado de mostrar el orden en que se muestre los attribute

Entity AttributeValueTargetEntity

Será la encargada de la relación con attribute y nuestra entidad y obtendrá el valor seleccionado o ingresado

column Descripción
attribute Id attribute ManyToOne y su targetEntity sera Attribute
value Valor seleccionado o ingresado por el usuario de type array
ID TargetEntity Id de la nuestra entidad será ManyToOne

Entity/AttributeValueTargetEntity.php

Ejemplo de la Entity AttributeValueTargetEntity

Ejemplo de la Entity TargetEntity

Ejemplo de Nuestro controlador para cargar los attribute

En nuestro formulario TargetEntityType()

Se agrega un campo de tipo attributes

CRUD para la carga de attributes

admin/attributes/list

Ejemplo para la configuración de un campo type choice

Ejemplo para la configuración de un campo type entity

Para definir la relación con el Owner de un Attribute

gbenitez\Bundle\AttributeBundle\Entity\AttributeOwnerInterface

Para definir targetEntity


All versions of attribute-bundle with dependencies

PHP Build Version
Package Version
Requires php Version >=5.5.0
symfony/framework-bundle Version ^2.5||^3.0||^4.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package gbenitez/attribute-bundle contains the following files

Loading the files please wait ....