list.php 233 Bytes
Newer Older
imac's avatar
imac committed
1 2 3 4 5 6 7 8 9 10
<?php

class PMXI_Post_List extends PMXI_Model_List {
	protected $primary = array('post_id');
	
	public function __construct() {
		parent::__construct();
		$this->setTable(PMXI_Plugin::getInstance()->getTablePrefix() . 'posts');
	}
}