Mage_ProductAlert_Model_Mysql4_Price_Collection Class Reference

Inheritance diagram for Mage_ProductAlert_Model_Mysql4_Price_Collection:

Mage_Core_Model_Mysql4_Collection_Abstract Varien_Data_Collection_Db Varien_Data_Collection

List of all members.

Public Member Functions

 addCustomerFilter ($customer)
 addWebsiteFilter ($website)
 setCustomerOrder ($sort= 'ASC')

Protected Member Functions

 _construct ()


Detailed Description

Definition at line 35 of file Collection.php.


Member Function Documentation

_construct (  )  [protected]

Initialization here

Reimplemented from Mage_Core_Model_Mysql4_Collection_Abstract.

Definition at line 37 of file Collection.php.

00038     {
00039         $this->_init('productalert/price');
00040     }

addCustomerFilter ( customer  ) 

Definition at line 42 of file Collection.php.

00043     {
00044         if (is_array($customer)) {
00045             $condition = $this->getConnection()->quoteInto('customer_id IN(?)', $customer);
00046         }
00047         elseif ($customer instanceof Mage_Customer_Model_Customer) {
00048             $condition = $this->getConnection()->quoteInto('customer_id=?', $customer->getId());
00049         }
00050         else {
00051             $condition = $this->getConnection()->quoteInto('customer_id=?', $customer);
00052         }
00053         $this->addFilter('customer_id', $condition, 'string');
00054         return $this;
00055     }

addWebsiteFilter ( website  ) 

Definition at line 57 of file Collection.php.

00058     {
00059         if (is_null($website) || $website == 0) {
00060             return $this;
00061         }
00062         if (is_array($website)) {
00063             $condition = $this->getConnection()->quoteInto('website_id IN(?)', $website);
00064         }
00065         elseif ($website instanceof Mage_Core_Model_Website) {
00066             $condition = $this->getConnection()->quoteInto('website_id=?', $website->getId());
00067         }
00068         else {
00069             $condition = $this->getConnection()->quoteInto('website_id=?', $website);
00070         }
00071         $this->addFilter('website_id', $condition, 'string');
00072         return $this;
00073     }

setCustomerOrder ( sort = 'ASC'  ) 

Definition at line 75 of file Collection.php.

00076     {
00077         $this->getSelect()->order('customer_id ' . $sort);
00078         return $this;
00079     }


The documentation for this class was generated from the following file:

Generated on Sat Jul 4 17:24:35 2009 for Magento by  doxygen 1.5.8