本文整理汇总了PHP中Posts::getId方法的典型用法代码示例。如果您正苦于以下问题:PHP Posts::getId方法的具体用法?PHP Posts::getId怎么用?PHP Posts::getId使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Posts
的用法示例。
在下文中一共展示了Posts::getId方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: executeCreate
public function executeCreate()
{
$taxonomy = $this->request()->get('taxonomy', 'STRING', 'post');
$this->setView('Post/form');
$post = new \Posts();
$post->setIsDraft(true);
$post->setTaxonomy($taxonomy);
$post->save(false);
//save Draft before
$this->redirect($this->createUrl('post/edit', array('id' => $post->getId(), 'taxonomy' => $taxonomy)));
/*$error = array();
if ($this->request()->isPostRequest()) {
if ($this->_save($post, $error)) {
Session::getInstance()->setFlash('post_message', t($post->getTitle() .' was saved!'));
$this->redirect($this->createUrl('post/default', array('taxonomy' => $taxonomy)));
}
}
$this->view()->assign(array(
'post' => $post,
'taxonomy' => $taxonomy,
'error' => $error,
'page_title' => t('New post')
));
return $this->renderComponent();
*/
}
示例2: Posts
<div class="page-title">
<h2>Blog</h2>
<h1>STAY IN TOUCH</h1>
<h3>Read our Legend</h3>
</div>
</section>
<!-- Blogs -->
<div class="main-container">
<div class="main wrapper clearfix row">
<article class="column column-9">
<article class="single-article">
<header>
<?php
if (isset($_GET['id'])) {
$posts = new Posts($db);
$stmt = $posts->getId($_GET['id']);
while ($row_post = $stmt->fetch_assoc()) {
?>
<h1><a href="" title="blog" class="blog-title"><?php
echo "{$row_post['post_title']}";
?>
</a></h1>
<h2>by: <a href="" title='author' class="author"><?php
echo "{$row_post['post_author']}";
?>
</a></h2>
<div class="article-info">
<span class="date_created"><i class="fa fa-clock-o"></i> <?php
echo "{$row_post['post_date']}";
?>
</span>