コード例 #1
0
ファイル: Quote.php プロジェクト: sakibanda/emarketing
 public function prepareSnippets(Mzax_Emarketing_Model_Medium_Email_Snippets $snippets)
 {
     parent::prepareSnippets($snippets);
     $snippets->addVar('quote.customer_firstname', 'Customer Firstname', 'Firstname of the customer from the quote');
     $snippets->addVar('quote.customer_lastname', 'Customer Lastname', 'Lastname of the customer from the quote');
     $snippets->addSnippets('mage.cart.products', '{{block type="mzax_emarketing/template" area="frontend" template="mzax/email/quote-items.phtml" quote="$quote"}}', $this->__('Shopping Cart Products Table'), $this->__('Simple table to display the shopping cart products.'));
 }
コード例 #2
0
ファイル: Order.php プロジェクト: sakibanda/emarketing
 public function prepareSnippets(Mzax_Emarketing_Model_Medium_Email_Snippets $snippets)
 {
     parent::prepareSnippets($snippets);
     $snippets->addVar('order.customer_firstname', 'Customer Firstname', 'Firstname of the customer from the order');
     $snippets->addVar('order.customer_lastname', 'Customer Lastname', 'Lastname of the customer from the order');
     $snippets->addSnippets('mage.order.products', '{{block type="mzax_emarketing/template" area="frontend" template="mzax/email/order-items.phtml" order="$order"}}', $this->__('Order Products Table'), $this->__('Simple table to display the order products.'));
 }