is_read <> 0; } /** * Is the item bookmarked? * * @return bool True if the item is bookmarked, false if not */ public function isBookmarked(): bool { return $this->is_bookmarked <> 0; } /** * Add an item * * @param int $feedId The ID of the feed to which the item belongs * @param ParsedItem $parsed The parsed item from the feed XML * @throws DocumentException If any is encountered */ public static function add(int $feedId, ParsedItem $parsed): void { Document::insert(Table::ITEM, new static( feed_id: $feedId, title: $parsed->title, item_guid: $parsed->guid, item_link: $parsed->link, published_on: $parsed->publishedOn, updated_on: $parsed->updatedOn, content: $parsed->content)); } /** * Update an item * * @param int $id The ID of the item to be updated * @param ParsedItem $parsed The parsed item from the feed XML * @throws DocumentException If any is encountered */ public static function update(int $id, ParsedItem $parsed): void { Patch::byId(Table::ITEM, $id, [ 'title' => $parsed->title, 'published_on' => $parsed->publishedOn, 'updated_on' => $parsed->updatedOn, 'content' => $parsed->content, 'is_read' => 0 ]); } }