Internal overhaul
This commit is contained in:
@@ -10,11 +10,8 @@
|
||||
* @license http://dev.osbill.net/license.html
|
||||
*/
|
||||
class Model_Product_Plugin_Domain extends Model_Product_Plugin {
|
||||
// This model doesnt have a database table
|
||||
public function __construct() {
|
||||
}
|
||||
|
||||
// Our required abstract methods
|
||||
|
||||
public function cost($annual=FALSE) {
|
||||
// @todo
|
||||
$x = 0;
|
||||
@@ -22,8 +19,6 @@ class Model_Product_Plugin_Domain extends Model_Product_Plugin {
|
||||
return $annual ? $x*12 : $x;
|
||||
}
|
||||
|
||||
public function feature_summary() {}
|
||||
|
||||
public function render_edit() {}
|
||||
|
||||
// @todo
|
||||
@@ -31,7 +26,16 @@ class Model_Product_Plugin_Domain extends Model_Product_Plugin {
|
||||
return 'internal';
|
||||
}
|
||||
|
||||
/** LOCAL FUNCTIONS **/
|
||||
// Overload functions
|
||||
|
||||
// This model doesnt have a database table
|
||||
public function __construct() {
|
||||
}
|
||||
|
||||
// Not used
|
||||
public function render_view() {}
|
||||
|
||||
// Local functions
|
||||
|
||||
// @todo This is not used, but should be.
|
||||
public function order_features() {
|
||||
|
Reference in New Issue
Block a user