예제 #1
0
파일: Behavior.php 프로젝트: rajarshc/Rooja
 public function _construct()
 {
     $this->setCaption("Tagging A Product");
     $this->setDescription("Customer will get points when they tag a product.");
     $this->setCode("customer_tag");
     return parent::_construct();
 }
예제 #2
0
 public function _construct()
 {
     $this->setCaption("Customer Referral");
     $this->setDescription("Customer will get points for every purchase made by a referred customer.");
     $this->setCode("referral");
     return parent::_construct();
 }
예제 #3
0
파일: Config.php 프로젝트: rajarshc/Rooja
 public function _construct()
 {
     return parent::_construct();
     $this->setCaption(Mage::helper('rewardssocial')->__("Facebook Like"));
     $this->setDescription(Mage::helper('rewardssocial')->__("Customer will get points when they like a page with Facebook."));
     $this->setCode('social_facebook_like');
 }
예제 #4
0
파일: Tag.php 프로젝트: rajarshc/Rooja
 public function _construct()
 {
     $this->setCaption("Tag writing");
     $this->setDescription("Customer will get points when they write a tag.");
     $this->setCode("customer_tag");
     return parent::_construct();
 }
예제 #5
0
파일: Action.php 프로젝트: rajarshc/Rooja
 public function _construct()
 {
     $this->setCaption($this->_getHelper()->__('Customer birthday occurs'));
     $this->setDescription($this->_getHelper()->__('Customer will get points on a birthday.'));
     $this->setCode(self::ACTION_CODE);
     return parent::_construct();
 }
예제 #6
0
 public function _construct()
 {
     $this->setCaption("Newsletter Subscription");
     $this->setDescription("Customer will get points when they sign up to the newsletter.");
     $this->setCode("customer_newsletter");
     return parent::_construct();
 }
예제 #7
0
파일: Review.php 프로젝트: rajarshc/Rooja
 public function _construct()
 {
     $this->setCaption("Review writing");
     $this->setDescription("Customer will get points when they write a review.");
     $this->setCode("customer_writes_review");
     return parent::_construct();
 }