https://github.com/PressForward/pressforward
Raw File
Tip revision: 5655ef1b29dc75ee2a2f2dd526169aae4be22c78 authored by Aram Zucker-Scharff on 22 June 2016, 14:34:00 UTC
Noting minor uptick to deal with fringe case.
Tip revision: 5655ef1
Items.php
<?php
namespace PressForward\Interfaces;
interface Items
{
    public function insert_post( $post, $error );
    public function update_post( $post, $error );
	public function delete_post( $postid, $force_delete = false );
	public function get_post(  $post = null, $output = OBJECT, $filter = 'raw' );
	public function is_error( $post );
}
back to top