Skip to content

Instantly share code, notes, and snippets.

@dwolfhub
Created June 14, 2013 16:55
Show Gist options
  • Save dwolfhub/5783517 to your computer and use it in GitHub Desktop.
Save dwolfhub/5783517 to your computer and use it in GitHub Desktop.
PHP: Fuel model boilerplate
<?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