1. Go to this page and download the library: Download ed/blog-bundle library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
ed / blog-bundle example snippets
//app/AppKernel.php
class AppKernel extends Kernel
{
public function registerBundles()
{
$bundles = array(
// ...
new FOS\UserBundle\FOSUserBundle(),
new ED\BlogBundle\EDBlogBundle(),
new Knp\Bundle\PaginatorBundle\KnpPaginatorBundle(),
new Sonata\CoreBundle\SonataCoreBundle(),
new Sonata\MediaBundle\SonataMediaBundle(),
new Sonata\EasyExtendsBundle\SonataEasyExtendsBundle(),
new JMS\SerializerBundle\JMSSerializerBundle(),
new Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle(),
new Stof\DoctrineExtensionsBundle\StofDoctrineExtensionsBundle(),
new Eko\FeedBundle\EkoFeedBundle(),
//new Application\Sonata\MediaBundle\ApplicationSonataMediaBundle(), //will be generated later
);
// ...
}
}
//src/Acme/DemoBundle/Entity/Article.php
namespace Acme\Bundle\DemoBundle\Entity;
use ED\BlogBundle\Interfaces\Model\ArticleInterface;
use ED\BlogBundle\Model\Entity\Article as BaseArticle;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Table(name="acme_demo_article")
* @ORM\HasLifecycleCallbacks
* @ORM\Entity(repositoryClass="ED\BlogBundle\Model\Repository\ArticleRepository")
*/
class Article extends BaseArticle implements ArticleInterface
{
}
//src/Acme/DemoBundle/Entity/ArticleMeta.php
namespace Acme\Bundle\DemoBundle\Entity;
use ED\BlogBundle\Interfaces\Model\ArticleMetaInterface;
use ED\BlogBundle\Model\Entity\ArticleMeta as BaseArticleMeta;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Table(name="acme_demo_article_meta")
* @ORM\Entity()
*/
class ArticleMeta extends BaseArticleMeta implements ArticleMetaInterface
{
}
//src/Acme/DemoBundle/Entity/Comment.php
namespace Acme\Bundle\DemoBundle\Entity;
use ED\BlogBundle\Interfaces\Model\CommentInterface;
use ED\BlogBundle\Model\Entity\Comment as BaseComment;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Table(name="acme_demo_comment")
* @ORM\HasLifecycleCallbacks
* @ORM\Entity(repositoryClass="ED\BlogBundle\Model\Repository\CommentRepository")
*/
class Comment extends BaseComment implements CommentInterface
{
}
//src/Acme/DemoBundle/Entity/Settings.php
namespace Acme\Bundle\DemoBundle\Entity;
use ED\BlogBundle\Interfaces\Model\BlogSettingsInterface;
use ED\BlogBundle\Model\Entity\BlogSettings as BaseSettings;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Table(name="acme_demo_settings")
* @ORM\Entity(repositoryClass="ED\BlogBundle\Model\Repository\BlogSettingsRepository")
*/
class Settings extends BaseSettings implements BlogSettingsInterface
{
}
//src/Acme/DemoBundle/Entity/Taxonomy.php
namespace Acme\Bundle\DemoBundle\Entity;
use ED\BlogBundle\Interfaces\Model\BlogTaxonomyInterface;
use ED\BlogBundle\Model\Entity\Taxonomy as BaseTaxonomy;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Table(name="acme_demo_taxonomy")
* @ORM\Entity(repositoryClass="ED\BlogBundle\Model\Repository\TaxonomyRepository")
*/
class Taxonomy extends BaseTaxonomy implements BlogTaxonomyInterface
{
}
//src/Acme/DemoBundle/Entity/TaxonomyRelation.php
namespace Acme\Bundle\DemoBundle\Entity;
use ED\BlogBundle\Interfaces\Model\TaxonomyRelationInterface;
use ED\BlogBundle\Model\Entity\TaxonomyRelation as BaseTaxonomyRelation;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Table(name="acme_demo_taxonomy_relation")
* @ORM\Entity()
*/
class TaxonomyRelation extends BaseTaxonomyRelation implements TaxonomyRelationInterface
{
}
//src/Acme/DemoBundle/Entity/Term.php
namespace Acme\Bundle\DemoBundle\Entity;
use ED\BlogBundle\Interfaces\Model\BlogTermInterface;
use ED\BlogBundle\Model\Entity\Term as BaseTerm;
use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Table(name="acme_demo_term")
* @ORM\Entity()
* @UniqueEntity("slug")
*/
class Term extends BaseTerm implements BlogTermInterface
{
}
//src/AppBundle/Entity/User
namespace Acme\Bundle\DemoBundle\Entity;
use ED\BlogBundle\Interfaces\Model\BlogUserInterface;
use ED\BlogBundle\Interfaces\Model\ArticleCommenterInterface;
use FOS\UserBundle\Model\User as BaseUser;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity
* @ORM\Table(name="user")
* @ORM\Entity(repositoryClass="AppBundle\Repository\UserRepository")
*/
class User extends BaseUser implements BlogUserInterface, ArticleCommenterInterface
{
//...
/**
* Required by BlogUserInterface
*
* @ORM\Column(name="blog_display_name", type="string")
*/
protected $blogDisplayName;
public function getBlogDisplayName()
{
return $this->blogDisplayName;
}
public function setBlogDisplayName($blogDisplayName)
{
$this->blogDisplayName = $blogDisplayName;
return $this;
}
public function getCommenterDisplayName()
{
return $this->blogDisplayName;
}
}
//src/AppBundle/Repository/UserRepository
namespace AppBundle\Repository;
use ED\BlogBundle\Interfaces\Repository\BlogUserRepositoryInterface;
use ED\BlogBundle\Model\Repository\UserRepository as BaseUserRepository;
class AppUserRepository extends BaseUserRepository implements BlogUserRepositoryInterface
{
}
//app/Kernel.php
//...
class AppKernel extends Kernel
{
public function registerBundles()
{
$bundles = array(
// ...
new Application\Sonata\MediaBundle\ApplicationSonataMediaBundle(), //add/uncomment
);
// ...
}
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.