cmc-sales/app/models/product_option.php
2013-03-23 16:25:52 +11:00

18 lines
339 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.
*
*/
}