Esempio n. 1
0
    /**
     * Delete the loaded post and its relations with categories.
     * @return {boolean} FALSE, if deletion failed,
     *                   TRUE otherwise (including the case that the model doesn't exist).
     */
    public function delete()
    {
        if (!parent::delete()) {
            return FALSE;
        }
        $stmt = '
			DELETE FROM `' . AE_TABLE_POSTS2CATEGORIES . '`
			WHERE pc_post = :id
		';
        $params = array(':id' => $this->getId());
        return ae_Database::query($stmt, $params) !== FALSE;
    }