本文整理匯總了PHP中AppBundle\Entity\Post::setIsActive方法的典型用法代碼示例。如果您正苦於以下問題:PHP Post::setIsActive方法的具體用法?PHP Post::setIsActive怎麽用?PHP Post::setIsActive使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類AppBundle\Entity\Post
的用法示例。
在下文中一共展示了Post::setIsActive方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: blogAction
/**
* @Route("/channel/{uniqID}/blog", name="oktothek_series_blog_post")
* @Method({"GET", "POST"})
* @Template()
*/
public function blogAction(Request $request, Series $series)
{
$this->denyAccessUnlessGranted('edit_channel', $series);
$post = new Post();
$post->setIsActive(true);
$form = $this->createForm(PostType::class, $post, ['action' => $this->generateUrl('oktothek_series_blog_post', ['uniqID' => $series->getUniqID()])]);
$form->add('submit', SubmitType::class, ['label' => 'oktothek.post_create_button', 'attr' => ['class' => 'btn btn-primary']]);
if ($request->getMethod() == "POST") {
//sends form
$form->handleRequest($request);
if ($form->isValid()) {
$em = $this->getDoctrine()->getManager();
$series->addPost($post);
foreach ($post->getAssets() as $asset) {
$asset->setSeries($series);
$em->persist($asset);
}
$em->persist($post);
$em->persist($series);
$em->flush();
$this->get('session')->getFlashBag()->add('success', 'oktothek.success_create_post');
$this->get('oktothek_notification_service')->createNewPostNotifications($post);
return $this->redirect($this->generateUrl('oktothek_channel_blogposts', ['uniqID' => $series->getUniqID()]));
} else {
$this->get('session')->getFlashBag()->add('error', 'oktothek.error_create_post');
}
}
return ['form' => $form->createView(), 'series' => $series];
}
示例2: load
/**
* {@inheritDoc}
*/
public function load(ObjectManager $manager)
{
$post = new Post();
$post->setTitle('Man must explore, and this is exploration at its greatest');
$post->setDescription('Never in all their history have men been able truly to conceive of
the world as one: a single sphere, a globe, having the qualities of
a globe, a round earth in which all the directions eventually meet,
in which there is no center because every point, or none, is center —
an equal earth which all men occupy as equals. The airman\'s earth, if
free men make it, will be truly round: a globe in practice, not in theory.');
$post->setUser($manager->merge($this->getReference('super_admin_user')));
$post->setIsActive(1);
$post->setCreatedOn(new \DateTime());
$post->setUpdatedOn(new \DateTime());
$post1 = new Post();
$post1->setTitle('New in Symfony 2.6: Bootstrap form theme');
$post1->setDescription('Bootstrap is the most popular HTML, CSS, and JavaScript framework for developing
responsive, mobile first projects on the web. Bootstrap is so widely used that it
has become the de facto standard for frontend development. That\'s why Symfony 2.6
will include a new form theme designed for Bootstrap 3.');
$post1->setUser($manager->merge($this->getReference('super_admin_user')));
$post1->setIsActive(1);
$post1->setCreatedOn(new \DateTime());
$post1->setUpdatedOn(new \DateTime());
$post2 = new Post();
$post2->setTitle('Symfony Doctine data fixtures');
$post2->setDescription('Fixtures are used to load a controlled set of data into a database. This data
can be used for testing or could be the initial data required for the application
to run smoothly. Symfony2 has no built in way to manage fixtures but Doctrine2 has
a library to help you write fixtures for the Doctrine ORM or ODM.');
$post2->setUser($manager->merge($this->getReference('super_admin_user')));
$post2->setIsActive(1);
$post2->setCreatedOn(new \DateTime());
$post2->setUpdatedOn(new \DateTime());
$manager->persist($post);
$manager->persist($post1);
$manager->persist($post2);
$manager->flush();
}