本文整理汇总了PHP中Mapper::insert方法的典型用法代码示例。如果您正苦于以下问题:PHP Mapper::insert方法的具体用法?PHP Mapper::insert怎么用?PHP Mapper::insert使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Mapper
的用法示例。
在下文中一共展示了Mapper::insert方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: insertPicture
/**
*
* @param Picture $picture_
* @param array $arrayFilter
* @throws InvalidArgumentException
*/
public function insertPicture(Picture $picture_, array $arrayFilter = array(), $unitary = false)
{
try {
if (is_null($this->table)) {
throw new InvalidArgumentException('Attribute "table" can\'t be NULL !');
}
if (isset($unitary) && $unitary) {
if (isset($this->files) && !empty($this->files) && count($this->files) == 1) {
foreach ($this->files as $file) {
$picture = initObject($file, $picture_, true, false);
$pictureExt = substr(strrchr($picture->getType(), "/"), 1);
$picture->setPath('/announcement/original/');
$picture->setTitle(uniqid());
$picture->setExtension($pictureExt);
if ($this->insertPicture($picture, array('tmp_name', 'size', 'type'))) {
move_uploaded_file($picture->getTmpName(), UPLOAD_PATH . '/announcement/original/' . $picture_->getTitle() . '.' . $picture->getExtension());
}
}
}
}
return parent::insert($this->table, $picture_, $arrayFilter);
} catch (InvalidArgumentException $e) {
print $e->getMessage();
exit;
}
}
示例2: insertMessage
/**
*
* @param Message $message_
* @param array $arrayFilter
* @throws InvalidArgumentException
*/
public function insertMessage(Message $message_, array $arrayFilter = array())
{
try {
if (is_null($this->table)) {
throw new InvalidArgumentException('Attribute "table" can\'t be NULL !');
}
$userMapper = new UserMapper();
$userMapper->setId($message_->getIdSender());
$user_sender = $userMapper->selectUser();
$userMapper->setId($message_->getIdReceiver());
$user_receiver = $userMapper->selectUser();
if (!is_null($user_sender->getId()) && !is_null($user_receiver->getId())) {
return parent::insert($this->table, $message_, $arrayFilter);
} elseif (is_null($user_sender->getId())) {
throw new Exception('User sender does not exist !');
} elseif (is_null($user_receiver->getId())) {
throw new Exception('User receiver does not exist !');
}
} catch (InvalidArgumentException $e) {
print $e->getMessage();
exit;
} catch (Exception $e) {
print $e->getMessage();
exit;
}
}
示例3: insertComment
/**
*
* @param Comment $comment_
* @param array $arrayFilter
* @throws InvalidArgumentException
*/
public function insertComment(Comment $comment_, array $arrayFilter = array())
{
try {
if (is_null($this->table)) {
throw new InvalidArgumentException('Attribute "table" can\'t be NULL !');
}
$userMapper = new UserMapper();
$announcementMapper = new AnnouncementMapper();
$userMapper->setId($comment_->getIdUser());
$user = $userMapper->selectUser();
$announcementMapper->setId($comment_->getIdAnnouncement());
$announcement = $announcementMapper->selectAnnouncement();
if (!is_null($user->getId()) && !is_null($announcement->getId())) {
return parent::insert($this->table, $comment_, $arrayFilter);
} elseif (is_null($user->getId())) {
throw new Exception('User is inexistant !');
} elseif (is_null($announcement->getId())) {
throw new Exception('Announcement is inexistant !');
}
} catch (InvalidArgumentException $e) {
print $e->getMessage();
exit;
} catch (Exception $e) {
print $e->getMessage();
exit;
}
}
示例4: insertTag
/**
*
* @param Tag $tag_
* @param array $arrayFilter
* @throws InvalidArgumentException
*/
public function insertTag(Tag $tag_, array $arrayFilter = array())
{
try {
if (is_null($this->table)) {
throw new InvalidArgumentException('Attribute "table" can\'t be NULL !');
}
return parent::insert($this->table, $tag_, $arrayFilter);
} catch (InvalidArgumentException $e) {
print $e->getMessage();
exit;
}
}
示例5: insertIncoming
/**
*
* @param Incoming $incoming_
* @param array $arrayFilter
* @throws InvalidArgumentException
*/
public function insertIncoming(Incoming $incoming_, array $arrayFilter = array())
{
try {
if (is_null($this->table)) {
throw new InvalidArgumentException('Attribute "table" can\'t be NULL !');
}
$userMapper = new UserMapper();
$userMapper->setId($incoming_->getIdUser());
$user = $userMapper->selectUser();
if (!is_null($user->getId())) {
return parent::insert($this->table, $incoming_, $arrayFilter);
} elseif (isset($user) && is_null($user->getId())) {
throw new Exception('User does not exist !');
}
} catch (Exception $e) {
print $e->getMessage();
exit;
}
}
示例6: register
/**
* Register a new tag into tag holder
*
* @param Tag $tag The tag
*
* @return bool Return true when succeed, or throw a Exception for false
*/
public function register(Tag $tag)
{
return Mapper::insert($this->tagMap, $tag->getTag(), $tag);
}
示例7: goAssociate
public function goAssociate(stdClass $object_)
{
try {
if (isset($object_) && !emptyObject($object_)) {
$announcementMapper = new AnnouncementMapper();
$announcementMapper->setId($object_->id_announcement);
$announcement = $announcementMapper->selectAnnouncement();
$tagMapper = new TagMapper();
$tagMapper->setId($object_->id_tag);
$tag = $tagMapper->selectTag();
if (!is_null($announcement->getId()) && !is_null($tag->getId())) {
if (is_null($user->getId())) {
return parent::insert('TO_ASSOCIATE', $object_);
} else {
throw new Exception('The user is already followed by this user !');
}
return parent::insert($this->table, $message_, $arrayFilter);
} elseif (is_null($announcement->getId())) {
throw new Exception('Announcement is inexistant !');
} elseif (is_null($tag->getId())) {
throw new Exception('Tag is inexistant !');
}
} elseif (empty($id_announcement_)) {
throw new Exception('Id announcement is required !');
} elseif (empty($id_tag_)) {
throw new Exception('Id tag is required !');
}
} catch (Exception $e) {
print $e->getMessage();
exit;
}
}