cmc-sales/php/app/models/product_option.php

18 lines
339 B
PHP
Raw Permalink Normal View History

<?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.
*
*/
2009-12-16 12:50:48 -08:00
}