Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I wanted to make some changes in SnapshotManager.class.php. I have tried extending this class in my ApplicationSonataPageBundle. But always I am getting the following error

    Catchable Fatal Error: Argument 1 passed to Application\Sonata\PageBundle\Entity  \ComoPageManager::__construct() must be an instance of Application\Sonata\PageBundle\Entity\EntityManager, none given, called in /Users/shaduli/projects/TNEPlatform/vendor/sonata-project/page-bundle/Sonata/PageBundle/Entity/SnapshotManager.php on line 191 and defined in /Users/shaduli/projects/TNEPlatform/src/Application/Sonata/PageBundle/Entity/ComoPageManager.php line 29 

my newly created SnapshotManager class

     namespace Application\Sonata\PageBundle\Entity;
     use Sonata\BlockBundle\Model\BlockInterface;
     use Sonata\PageBundle\Model\PageInterface;
     use Sonata\PageBundle\Model\SnapshotInterface;
     use Sonata\PageBundle\Model\SnapshotManagerInterface;
     use Sonata\PageBundle\Model\SiteInterface;
     use Sonata\PageBundle\Model\Template;
     use Sonata\PageBundle\Model\SnapshotChildrenCollection;
     use Doctrine\ORM\EntityManager;
     use Doctrine\ORM\NoResultException;
     use Sonata\PageBundle\Model\SnapshotPageProxy;
     use Sonata\PageBundle\Entity\SnapshotManager;
     class ComoSnapshotManager extends SnapshotManager
     {
     /**
     * {@inheritdoc}
     */
     public function enableSnapshots(array $snapshots)
     {
         if (count($snapshots) == 0) {
           return;
     }

    $now = new \DateTime;
    $diff = new \DateTime;
    $pageIds = $snapshotIds = array();
    foreach ($snapshots as $snapshot) {
        $pageIds[] = $snapshot->getPage()->getId();
        $snapshotIds[] = $snapshot->getId();

        $snapshot->setPublicationDateStart($now);
        $snapshot->setPublicationDateEnd($diff->add(new \DateInterval('P1Y')));

        $this->entityManager->persist($snapshot);
    }

    $this->entityManager->flush();
    //@todo: strange sql and low-level pdo usage: use dql or qb
    $sql = sprintf("UPDATE %s SET publication_date_end = '%s' WHERE id NOT IN(%s) AND page_id IN (%s) AND publication_date_end IS NULL",
        $this->entityManager->getClassMetadata($this->class)->table['name'],
        $now->format('Y-m-d H:i:s'),
        implode(',', $snapshotIds),
        implode(',', $pageIds)
    );

    $this->getConnection()->query($sql);
}

}

services.yml :

  services:
      sonata.page.manager.snapshot:
        class: Application\Sonata\PageBundle\Entity\ComoSnapShotManager
        arguments:
          entityManager: "@doctrine.orm.entity_manager"
          class: Application\Sonata\PageBundle\Entity\Snapshot
          pageClass:  Sonata\PageBundle\Entity\PageManager
          blockClass: Sonata\PageBundle\Entity\BlockManager
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.