dev-master
9999999-dev
MIT
The Requires
- php >=5.3.2
- symfony/framework-bundle ~2.1
- symfony/form ~2.1
- white-october/pagerfanta-bundle dev-master
classified ads petites annonces
The ClassifiedAdsBundle provide a sample classified ad system for your application based on symfony2, (*1)
``` bash $ php composer.phar require "lsroudi/classifiedads": "dev-master", (*2)
### Step 2: Enable the bundle Enable the bundle in the kernel: ``` php <?php // app/AppKernel.php public function registerBundles() { $bundles = array( // ... new Lsroudi\ClassifiedAdsBundle\LsroudiClassifiedAdsBundle(), ); }
``` php, (*3)
<?php, (*4)
/** * Description of Ad * * (c) lsroudi http://lsroudi.com/ lsroudi@gmail.com * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */, (*5)
namespace Acme\DemoBundle\Entity;, (*6)
use Doctrine\ORM\Mapping as ORM; use Lsroudi\ClassifiedAdsBundle\Entity\Ad as BaseAd;, (*7)
/** * @ORM\Entity * @ORM\Table(name="lsroudi_classified_ad") */ class Ad extends BaseAd {, (*8)
/** * @var integer * * @ORM\Column(name="id", type="integer", nullable=false) * @ORM\Id * @ORM\GeneratedValue(strategy="IDENTITY") */ protected $id; public function __construct() { parent::__construct(); } public function getId() { return $this->id; }
} ```, (*9)
MIT
classified ads petites annonces