00001 <?php
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034 class Mage_Bundle_Model_Option extends Mage_Core_Model_Abstract
00035 {
00036
00037
00038
00039
00040
00041 protected $_defaultSelection = null;
00042
00043
00044
00045
00046
00047 protected function _construct()
00048 {
00049 $this->_init('bundle/option');
00050 parent::_construct();
00051 }
00052
00053
00054
00055
00056
00057
00058
00059 public function addSelection($selection)
00060 {
00061 if (!$selection) {
00062 return false;
00063 }
00064 if (!$selections = $this->getData('selections')) {
00065 $selections = array();
00066 }
00067 array_push($selections, $selection);
00068 $this->setSelections($selections);
00069 return $this;
00070 }
00071
00072
00073
00074
00075
00076
00077 public function isSaleable()
00078 {
00079 $saleable = 0;
00080 if ($this->getSelections()) {
00081 foreach ($this->getSelections() as $selection) {
00082 if ($selection->isSaleable()) {
00083 $saleable++;
00084 }
00085 }
00086 return (bool)$saleable;
00087 }
00088 else {
00089 return false;
00090 }
00091 }
00092
00093
00094
00095
00096
00097
00098 public function getDefaultSelection()
00099 {
00100 if (!$this->_defaultSelection && $this->getSelections()) {
00101 foreach ($this->getSelections() as $selection) {
00102 if ($selection->getIsDefault()) {
00103 $this->_defaultSelection = $selection;
00104 break;
00105 }
00106 }
00107 }
00108 return $this->_defaultSelection;
00109
00110
00111
00112
00113
00114
00115
00116
00117
00118
00119
00120
00121
00122
00123
00124
00125 }
00126
00127
00128
00129
00130
00131
00132 public function isMultiSelection()
00133 {
00134 if ($this->getType() == 'checkbox' || $this->getType() == 'multi') {
00135 return true;
00136 } else {
00137 return false;
00138 }
00139 }
00140
00141
00142
00143
00144
00145
00146
00147
00148 public function getSearchableData($productId, $storeId)
00149 {
00150 return $this->_getResource()
00151 ->getSearchableData($productId, $storeId);
00152 }
00153 }