import.php 303 Bytes
Newer Older
imac's avatar
imac committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
<?php 
/**
 * 
 * @author Max Tsiplyakov <makstsiplyakov@gmail.com>
 */

class PMAI_Admin_Import extends PMAI_Controller_Admin 
{		
		
	public function index( $post_type = 'post', $post ) 
	{			
		
		$this->data['post_type'] = $post_type;

		$this->data['post'] =& $post;
		
		$this->render();

	}			
}