本文整理汇总了PHP中Tweet::setMessage方法的典型用法代码示例。如果您正苦于以下问题:PHP Tweet::setMessage方法的具体用法?PHP Tweet::setMessage怎么用?PHP Tweet::setMessage使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Tweet
的用法示例。
在下文中一共展示了Tweet::setMessage方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: load
public function load($id) {
$result=HypertableConnection::query("SELECT * FROM tweet ".
"WHERE ROW='$id'");
if (!$result or !count($result->cells))
return null;
$tweet=new Tweet();
$tweet->setId($id);
$tweet->setTimestamp($result->cells[0]->key->timestamp);
$tweet->setMessage($result->cells[0]->value);
return $tweet;
}
示例2: sendAction
public function sendAction()
{
$request = $this->getRequest();
// Check if we have a POST request
if (!$request->isPost()) {
return $this->_helper->redirector('index', 'index');
}
// Get our form and validate it
$form = $this->getSendForm();
if (!$form->isValid($request->getPost())) {
$this->view->form = $form;
$val = $form->getValues();
return $this->_helper->redirector->gotoUrl($val['goto']);
}
$val = $form->getValues();
// create a tweet and store it in the Database
$profile = Zend_Auth::getInstance()->getIdentity();
$t = new Tweet();
$t->setMessage($val['message']);
TweetTable::store($t, $profile->getId());
// then redirect to the previous page
return $this->_helper->redirector->gotoUrl($val['goto']);
}