Created
June 14, 2013 16:55
-
-
Save dwolfhub/5783517 to your computer and use it in GitHub Desktop.
PHP: Fuel model boilerplate
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php if (!defined('BASEPATH')) exit('No direct script access allowed'); | |
class Model_names_model extends Base_module_model { | |
function __construct() | |
{ | |
parent::__construct('table_name'); | |
} | |
} | |
class Model_name_model extends Base_module_record { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment