| 1 |
<?php if (! defined('ABSPATH')) exit; // Exit if accessed directly |
| 2 |
class HC3_CrudFactory implements HC3_ICrudFactory |
| 3 |
{ |
| 4 |
protected $prefix = 'hc3-'; |
| 5 |
|
| 6 |
public function __construct( $prefix ) |
| 7 |
{ |
| 8 |
$this->prefix = $prefix; |
| 9 |
} |
| 10 |
|
| 11 |
public function make( $entity, $multi = TRUE ) |
| 12 |
{ |
| 13 |
$postType = $this->prefix . $entity; |
| 14 |
$return = new HC3_Crud_Wordpress_CustomPost( $postType ); |
| 15 |
return $return; |
| 16 |
} |
| 17 |
} |
| 18 |
|