skwi / project-base-bundle
Bundle with base code for projects
Installs: 2 657
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Requires
- php: >=5.3.0
- doctrine/common: >=2.1
- pagerfanta/pagerfanta: 1.0.*@dev
- symfony/framework-bundle: >=2.1
Requires (Dev)
- atoum/atoum: dev-master
- atoum/atoum-bundle: dev-master
- doctrine/orm: >=2.2.3
- evert/phpdoc-md: ~0.0.7
- phpdocumentor/phpdocumentor: 2.*
- sensio/generator-bundle: ~2.3
Suggests
- doctrine/mongodb-odm: If you want to use BaseManager with MongoDB and Doctrine ODM [1.0.*@dev]
- doctrine/mongodb-odm-bundle: If you want to use BaseManager with MongoDB and Doctrine ODM [3.0.*@dev]
- doctrine/orm: If you want to use BaseManager with Doctrine ORM [~2.2,>=2.2.3]
This package is auto-updated.
Last update: 2024-10-29 04:18:04 UTC
README
This bundle is not maintained anylonger because it violates several SOLID principles.
SkwiProjectBaseBundle
This is a bundle with some basic code I often use in my projects. Feel free to use it or enhance it.
Compatibility
The current version of the bundle is only compatible with Symfony 2.5+ Version 1.0 provides compatibility with older versions of Symfony
Setup
Install SkwiProjectBaseBundle
Simply run assuming you have installed composer (composer.phar or composer binary) :
php composer.phar require skwi/project-base-bundle "dev-master"
Configuration
Register the bundle in app/AppKernel.php
:
// app/AppKernel.php public function registerBundles() { return array( // ... new \Skwi\Bundle\ProjectBaseBundle\SkwiProjectBaseBundle(), ); }
In your app/config.yml file, you may need to set up several parameters
skwi_project_base: entity_bundle_name: FooBarBundle # Default bundle when extending BaseManager (see below) entity_bundle_namespace: \Foo\Bundle\BarBundle # Default bundle namespace password_encoder: sha512 # Password encoder method pager_max_per_page: 10 # Default max items per page when using paginator in the BaseManager kernel_root_dir: %kernel.root_dir%
Usage
Base Manager
This abstract class provides methods for object managed by Doctrine ORM or Doctrine ODM and MongoDb.
Philosophy
The idea is to extends this class to manage a specific entity. Other entities can be managed by an single manager but the $objectName
and $repository
property will be used for a default managed entity.
Project setup
It's recommended for a manager extend the class and to be injected as a service.
# service.yml mybundle.manager.poney : class : 'Foo\\Bundle\\BarBundle\\Manager\\PoneyManager' parent : skwi.projectbase.base_manager calls : - [setObjectManager, [@doctrine.orm.entity_manager]] - [setObject, ['FooBarBundle:Poney']]
<?php namespace Foo\Bundle\BarBundle\Manager; use Skwi\Bundle\ProjectBaseBundle\Manager; class PoneyManager extends BaseManager { #... }
Methods
The method provided by the base manager are described in the class API documentation.
Password encoder
The password encoder class provides an implementation of Symfony's PasswordEncoderInterface using the algorithm defined in the app/config.yml file
It's available as a service in the container.
$encoder = $this->getContainer()->get('skwi.projectbase.password_encoder'); $encodedPassword = $encoder->encodePassword($rawPassword, $salt); $isPasswordValid = $encoder->isPasswordValid($encodedPassword, $rawPassword, $salt);
Text helper
The text helper is a static class.
# Slug a string $sluggedString = TextHelper::slug($rawString);
Note : The slug method is quite basic at the moment, it might be enhance in a future update. Make sure to use 1.* version for compatibility.
Base view
A base twig view is provided y the bundle.
{% extends 'SkwiProjectBaseBundle::base.html.twig' %}
It loads the libraries for :
Note : The libraries are loaded form the CDN, with a local fallback for IE version inferior to IE9.
Form templates
The bundle also provide preset form templates for Bootstrap 3.
{% form_theme form 'SkwiProjectBaseBundle:Form:fields.html.twig' %} {# or #} {% form_theme form 'SkwiProjectBaseBundle:Form:fields-horizontal.html.twig' %}
Twig extensions
TextExtension
The TextExtension provides the following Twig filters
{{ string|slug # will slug the string using the bundle's TextHelper }} {{ string|striptags # will apply the strip_tags php method to the string }}
Testing
Unit tests are written using atoum. You will get atoum, among other dependencies, when
running composer install
. To run tests, you will need to run the following command :
vendor/bin/atoum
API Documentation
API documentation is generated with PHPDoc and phpdoc-md
To generate it, you will need to run the following commands :
vendor/bin/phpdoc -d src/ -t src/Skwi/Bundle/ProjectBaseBundle/Resources/doc/ --template="xml"
vendor/bin/phpdocmd src/Skwi/Bundle/ProjectBaseBundle/Resources/doc/structure.xml src/Skwi/Bundle/ProjectBaseBundle/Resources/doc
ToDo
- Remove or enhance the data format helper
- Enhance the slug method in text helper
- Remove twig encoder extension not very usefull
- See with last version of PHP for password encoding
- Update to symfony 2.5 with the property accessor
Known issues
Versioning
As of version 2.0.0, version tags are formated in a semantic way :
MAJOR.MINOR.PATCH.
- MAJOR version for incompatible API changes, likely breaking backward compatibility ;
- MINOR version for new functionality (backwards-compatible) ;
- PATCH version for backward compatible bug fixes.