cmc-sales/models/product_option.php
Karl Cordes 4347aee5f0 Changes
2009-11-04 17:12:12 +11:00

22 lines
374 B
PHP
Executable file

<?php
class ProductOption extends AppModel {
var $name = 'ProductOption';
var $belongsTo = array('ProductOptionsCategory');
/* Logic to enforce only 1 default option.
* If the option being saved claims to be the default, set any other options in that category
* that are already default == 1 , to be false.
*
*/
function beforeSave() {
}
}