2009-01-13 05:13:18 +00:00
|
|
|
<?php
|
|
|
|
|
class ProductOption extends AppModel {
|
|
|
|
|
|
|
|
|
|
var $name = 'ProductOption';
|
|
|
|
|
|
|
|
|
|
|
2009-09-10 03:23:39 +00:00
|
|
|
var $belongsTo = array('ProductOptionsCategory');
|
2009-01-13 05:13:18 +00:00
|
|
|
|
2009-09-11 02:50:16 +00:00
|
|
|
|
|
|
|
|
/* 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 20:50:48 +00:00
|
|
|
|
2009-09-11 02:50:16 +00:00
|
|
|
|
2009-01-13 05:13:18 +00:00
|
|
|
}
|