https://github.com/PressForward/pressforward
Raw File
Tip revision: 4d0d07a765d772dca51c71271faddb57ca7c47d7 authored by Aram Zucker-Scharff on 28 September 2016, 13:40:30 UTC
Update version number
Tip revision: 4d0d07a
Advance_System.php
<?php
namespace PressForward\Interfaces;
interface Advance_System
{
	public function last_step_state();
	public function last_step_post_type();
    public function transition( $old_post, $new_post );
    public function transition_post_image( $old_post, $new_post );
	public function prep_bookmarklet( $post_id );
	public function to_last_step( $post = array() );
	public function to_nomination(  $post = array() );
	public function get_pf_type_by_id( $item_id, $post_type );
}
back to top