Auguria_Sponsorship - Version 1.0.9

Version Notes

If you have ideas for improvements or find bugs, please send them to Franck Charpentier at www.auguria.net, with Auguria LastReviews as part of the subject line.

Download this release

Release Info

Developer Magento Core Team
Extension Auguria_Sponsorship
Version 1.0.9
Comparing to
See all releases


Code changes from version 1.0.7 to 1.0.9

Files changed (24) hide show
  1. app/code/community/Auguria/Sponsorship/Block/Adminhtml/Link/Grid.php +5 -5
  2. app/code/community/Auguria/Sponsorship/Helper/Data.php +3 -3
  3. app/code/community/Auguria/Sponsorship/Helper/Mail.php +12 -13
  4. app/code/community/Auguria/Sponsorship/Model/Adminhtml/System/Config/Backend/Sponsorship/NaturalNumber.php +25 -0
  5. app/code/community/Auguria/Sponsorship/Model/AutoBoost.php +1 -1
  6. app/code/community/Auguria/Sponsorship/Model/Core/Email/Template.php +8 -6
  7. app/code/community/Auguria/Sponsorship/Model/Observer.php +134 -3
  8. app/code/community/Auguria/Sponsorship/controllers/Adminhtml/LinkController.php +11 -8
  9. app/code/community/Auguria/Sponsorship/controllers/Customer/AccountController.php +23 -19
  10. app/code/community/Auguria/Sponsorship/controllers/IndexController.php +6 -6
  11. app/code/community/Auguria/Sponsorship/etc/config.xml +22 -3
  12. app/code/community/Auguria/Sponsorship/etc/system.xml +28 -1
  13. app/code/community/Auguria/Sponsorship/sql/sponsorship_setup/mysql4-upgrade-1.0.7-1.0.8.php +21 -0
  14. app/design/frontend/default/default/layout/sponsorship.xml +2 -2
  15. app/design/frontend/default/default/template/sponsorship/customer/account/fidelitypointsdetail.phtml +5 -3
  16. app/design/frontend/default/default/template/sponsorship/customer/account/sponsorpointsdetail.phtml +11 -9
  17. app/design/frontend/default/default/template/sponsorship/customer/form/edit.phtml +2 -2
  18. app/design/frontend/default/default/template/sponsorship/customer/form/register.phtml +3 -3
  19. app/locale/es_ES/Auguria_Sponsorship.csv +217 -0
  20. app/locale/es_ES/template/email/sponsorship_coupon.html +76 -0
  21. app/locale/es_ES/template/email/sponsorship_invitation.html +60 -0
  22. app/locale/fr_FR/Auguria_Sponsorship.csv +7 -1
  23. app/locale/fr_FR/template/email/sponsorship_coupon.html +1 -1
  24. package.xml +8 -8
app/code/community/Auguria/Sponsorship/Block/Adminhtml/Link/Grid.php CHANGED
@@ -22,7 +22,7 @@ class Auguria_Sponsorship_Block_Adminhtml_Link_Grid extends Mage_Adminhtml_Block
22
  $firstname = $customer->getAttribute('firstname');
23
  $lastname = $customer->getAttribute('lastname');
24
  $core = Mage::getSingleton('core/resource');
25
-
26
  $collection = Mage::getResourceModel('customer/customer_collection')
27
  ->addAttributeToSelect("sponsor")
28
  ->addNameToSelect()
@@ -34,7 +34,7 @@ class Auguria_Sponsorship_Block_Adminhtml_Link_Grid extends Mage_Adminhtml_Block
34
  'entity_id')
35
  ->addAttributeToFilter("sponsor", array('neq'=> array(0)))
36
  ;
37
-
38
  $this->setCollection($collection);
39
  return parent::_prepareCollection();
40
  }
@@ -91,10 +91,10 @@ class Auguria_Sponsorship_Block_Adminhtml_Link_Grid extends Mage_Adminhtml_Block
91
  'type' => 'datetime',
92
  'format' => Mage::app()->getLocale()->getDateTimeFormat(Mage_Core_Model_Locale::FORMAT_TYPE_SHORT),
93
  ));
94
-
95
  $this->addExportType('*/*/exportCsv', Mage::helper('sponsorship')->__('CSV'));
96
  $this->addExportType('*/*/exportXml', Mage::helper('sponsorship')->__('XML'));
97
-
98
  return parent::_prepareColumns();
99
  }
100
 
@@ -102,7 +102,7 @@ class Auguria_Sponsorship_Block_Adminhtml_Link_Grid extends Mage_Adminhtml_Block
102
  {
103
  $this->setMassactionIdField('id_filleul');
104
  $this->getMassactionBlock()->setFormFieldName('sponsorship');
105
-
106
  $statuses = Mage::getSingleton('sponsorship/changestatut')->getOptionArray();
107
 
108
  array_unshift($statuses, array('label'=>'', 'value'=>''));
22
  $firstname = $customer->getAttribute('firstname');
23
  $lastname = $customer->getAttribute('lastname');
24
  $core = Mage::getSingleton('core/resource');
25
+
26
  $collection = Mage::getResourceModel('customer/customer_collection')
27
  ->addAttributeToSelect("sponsor")
28
  ->addNameToSelect()
34
  'entity_id')
35
  ->addAttributeToFilter("sponsor", array('neq'=> array(0)))
36
  ;
37
+
38
  $this->setCollection($collection);
39
  return parent::_prepareCollection();
40
  }
91
  'type' => 'datetime',
92
  'format' => Mage::app()->getLocale()->getDateTimeFormat(Mage_Core_Model_Locale::FORMAT_TYPE_SHORT),
93
  ));
94
+
95
  $this->addExportType('*/*/exportCsv', Mage::helper('sponsorship')->__('CSV'));
96
  $this->addExportType('*/*/exportXml', Mage::helper('sponsorship')->__('XML'));
97
+
98
  return parent::_prepareColumns();
99
  }
100
 
102
  {
103
  $this->setMassactionIdField('id_filleul');
104
  $this->getMassactionBlock()->setFormFieldName('sponsorship');
105
+
106
  $statuses = Mage::getSingleton('sponsorship/changestatut')->getOptionArray();
107
 
108
  array_unshift($statuses, array('label'=>'', 'value'=>''));
app/code/community/Auguria/Sponsorship/Helper/Data.php CHANGED
@@ -17,7 +17,7 @@ class Auguria_Sponsorship_Helper_Data extends Mage_Core_Helper_Abstract
17
  return false;
18
  }
19
  */
20
-
21
  public function haveOrder ()
22
  {
23
  $cId = Mage::getSingleton('customer/session')->getCustomerId();
@@ -47,8 +47,8 @@ class Auguria_Sponsorship_Helper_Data extends Mage_Core_Helper_Abstract
47
  ->getLastItem();
48
  //si mail dans les logs parrain selection du log actif le plus ancien
49
  $parrain = $parrainageLog->getData('parent_id');
50
- if ($parrain != '') {
51
- $idParrain = $parrain['parent_id'];
52
  }
53
  //sinon, si il existe on prend l'id stocké dans le cookie
54
  else {
17
  return false;
18
  }
19
  */
20
+
21
  public function haveOrder ()
22
  {
23
  $cId = Mage::getSingleton('customer/session')->getCustomerId();
47
  ->getLastItem();
48
  //si mail dans les logs parrain selection du log actif le plus ancien
49
  $parrain = $parrainageLog->getData('parent_id');
50
+ if (isset($parrain) && $parrain != '') {
51
+ $idParrain = $parrain;
52
  }
53
  //sinon, si il existe on prend l'id stocké dans le cookie
54
  else {
app/code/community/Auguria/Sponsorship/Helper/Mail.php CHANGED
@@ -11,34 +11,34 @@ class Auguria_Sponsorship_Helper_Mail extends Mage_Core_Helper_Abstract
11
  {
12
  return Mage::app()->getGroup()->getName();
13
  }
14
-
15
  public function getSubject ()
16
  {
17
  return $this->__("Invitation to %s",$this->getStoreName());
18
  }
19
-
20
  public function getHeaderMessage ($prenom, $nom)
21
  {
22
  return $this->__('Dear %s %s,',$prenom, $nom);
23
  }
24
-
25
  public function getMessage ()
26
  {
27
  return $this->__('You should visit this website. It offers interesting products.');
28
  }
29
-
30
  public function getSponsorUrl ($id, $prenom, $nom, $email)
31
  {
32
  return Mage::getUrl('sponsorship/sponsor',Array ('sponsor_id'=> $id, 'nom'=>$nom , 'prenom'=>$prenom, 'email'=>$email));
33
 
34
  }
35
-
36
  public function getFooterMessage ($id='',$prenom='', $nom='', $email='')
37
  {
38
  $url = $this->getSponsorUrl($id, $prenom, $nom, $email);
39
  return $this->__("<a href='%s'>%s</a>", $url, $this->getUrlWtHttp());
40
  }
41
-
42
  public function getUrlWtHttp()
43
  {
44
  $patterns = array();
@@ -48,13 +48,13 @@ class Auguria_Sponsorship_Helper_Mail extends Mage_Core_Helper_Abstract
48
  $url = preg_replace($patterns, "", Mage::getUrl());
49
  return $url;
50
  }
51
-
52
  public function htmlToText ($html)
53
  {
54
  $h2t = new Auguria_Sponsorship_Lib_Html2Text($html);
55
  return $h2t->get_text();
56
  }
57
-
58
  public function recipientMailIsCustomer($mail)
59
  {
60
  $customer = mage::getModel("customer/customer")
@@ -81,7 +81,7 @@ class Auguria_Sponsorship_Helper_Mail extends Mage_Core_Helper_Abstract
81
  //message
82
  $subject = $post['message']['subject'];
83
  $body = $post['message']['body'];
84
-
85
  $date = now();
86
 
87
  //Boucle pour traiter les champs, les valider et les intégrer dans tableau mail
@@ -94,7 +94,7 @@ class Auguria_Sponsorship_Helper_Mail extends Mage_Core_Helper_Abstract
94
  $mails[$i]["sender_name"] = $sender_name;
95
  $mails[$i]["sender_email"] = $sender_email;
96
  $mails[$i]["sender_id"] = $sender_id;
97
-
98
  $recipient_firstname = ucwords(strtolower($post['recipient']['firstname'][$i]));
99
  $recipient_lastname = ucwords(strtolower($post['recipient']['lastname'][$i]));
100
  $mails[$i]["recipient_firstname"] = $recipient_firstname;
@@ -126,7 +126,7 @@ class Auguria_Sponsorship_Helper_Mail extends Mage_Core_Helper_Abstract
126
  $textFooter = $this->htmlToText($htmlFooter);
127
  $mails[$i]["html_footer"] = $htmlFooter;
128
  $mails[$i]["text_footer"] = $textFooter;
129
-
130
  $i++;
131
  }
132
  return $mails;
@@ -218,7 +218,7 @@ class Auguria_Sponsorship_Helper_Mail extends Mage_Core_Helper_Abstract
218
  return true;
219
  }
220
  catch (Exception $e)
221
- {
222
  return false;
223
  }
224
  }
@@ -249,7 +249,6 @@ class Auguria_Sponsorship_Helper_Mail extends Mage_Core_Helper_Abstract
249
  "recipient_email" => $recipient_email,
250
  "sponsorship_url" => $mail["sponsorship_url"]
251
  ));
252
-
253
  $mailTemplate->setDesignConfig(array('area' => 'fronted'))
254
  ->setReplyTo($sender_email)
255
  ->setReturnPath($sender_email)
11
  {
12
  return Mage::app()->getGroup()->getName();
13
  }
14
+
15
  public function getSubject ()
16
  {
17
  return $this->__("Invitation to %s",$this->getStoreName());
18
  }
19
+
20
  public function getHeaderMessage ($prenom, $nom)
21
  {
22
  return $this->__('Dear %s %s,',$prenom, $nom);
23
  }
24
+
25
  public function getMessage ()
26
  {
27
  return $this->__('You should visit this website. It offers interesting products.');
28
  }
29
+
30
  public function getSponsorUrl ($id, $prenom, $nom, $email)
31
  {
32
  return Mage::getUrl('sponsorship/sponsor',Array ('sponsor_id'=> $id, 'nom'=>$nom , 'prenom'=>$prenom, 'email'=>$email));
33
 
34
  }
35
+
36
  public function getFooterMessage ($id='',$prenom='', $nom='', $email='')
37
  {
38
  $url = $this->getSponsorUrl($id, $prenom, $nom, $email);
39
  return $this->__("<a href='%s'>%s</a>", $url, $this->getUrlWtHttp());
40
  }
41
+
42
  public function getUrlWtHttp()
43
  {
44
  $patterns = array();
48
  $url = preg_replace($patterns, "", Mage::getUrl());
49
  return $url;
50
  }
51
+
52
  public function htmlToText ($html)
53
  {
54
  $h2t = new Auguria_Sponsorship_Lib_Html2Text($html);
55
  return $h2t->get_text();
56
  }
57
+
58
  public function recipientMailIsCustomer($mail)
59
  {
60
  $customer = mage::getModel("customer/customer")
81
  //message
82
  $subject = $post['message']['subject'];
83
  $body = $post['message']['body'];
84
+
85
  $date = now();
86
 
87
  //Boucle pour traiter les champs, les valider et les intégrer dans tableau mail
94
  $mails[$i]["sender_name"] = $sender_name;
95
  $mails[$i]["sender_email"] = $sender_email;
96
  $mails[$i]["sender_id"] = $sender_id;
97
+
98
  $recipient_firstname = ucwords(strtolower($post['recipient']['firstname'][$i]));
99
  $recipient_lastname = ucwords(strtolower($post['recipient']['lastname'][$i]));
100
  $mails[$i]["recipient_firstname"] = $recipient_firstname;
126
  $textFooter = $this->htmlToText($htmlFooter);
127
  $mails[$i]["html_footer"] = $htmlFooter;
128
  $mails[$i]["text_footer"] = $textFooter;
129
+
130
  $i++;
131
  }
132
  return $mails;
218
  return true;
219
  }
220
  catch (Exception $e)
221
+ {
222
  return false;
223
  }
224
  }
249
  "recipient_email" => $recipient_email,
250
  "sponsorship_url" => $mail["sponsorship_url"]
251
  ));
 
252
  $mailTemplate->setDesignConfig(array('area' => 'fronted'))
253
  ->setReplyTo($sender_email)
254
  ->setReturnPath($sender_email)
app/code/community/Auguria/Sponsorship/Model/Adminhtml/System/Config/Backend/Sponsorship/NaturalNumber.php ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * @category Auguria
4
+ * @package Auguria_Sponsorship
5
+ * @author Auguria
6
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
7
+ */
8
+ class Auguria_Sponsorship_Model_Adminhtml_System_Config_Backend_Sponsorship_NaturalNumber extends Mage_Core_Model_Config_Data
9
+ {
10
+ protected function _beforeSave()
11
+ {
12
+ $value = $this->getValue();
13
+ if (!Zend_Validate::is($value, 'NotEmpty')) {
14
+ Mage::throwException(Mage::helper('sponsorship')->__("A value is required."));
15
+ }
16
+ if (!Zend_Validate::is($value, 'Digits')) {
17
+ Mage::throwException(Mage::helper('sponsorship')->__("'%s' is not a natural number.", $value));
18
+ }
19
+ $validator = new Zend_Validate_GreaterThan(-1);
20
+ if (!$validator->isValid($value)) {
21
+ Mage::throwException(Mage::helper('sponsorship')->__("'%s' is not a natural number.", $value));
22
+ }
23
+ return $this;
24
+ }
25
+ }
app/code/community/Auguria/Sponsorship/Model/AutoBoost.php CHANGED
@@ -14,7 +14,7 @@ class Auguria_Sponsorship_Model_AutoBoost
14
  * Suivant les paramètres de délai avant relance et de validité des invitations
15
  */
16
  $resource = Mage::getSingleton('core/resource');
17
- $read = $resource->getConnection('core_read');
18
  $select = $read->select()
19
  ->from(Array("s"=>$resource->getTableName('sponsorship/sponsorship')),
20
  Array("*"=>"s.*"))
14
  * Suivant les paramètres de délai avant relance et de validité des invitations
15
  */
16
  $resource = Mage::getSingleton('core/resource');
17
+ $read = $resource->getConnection('core_read');
18
  $select = $read->select()
19
  ->from(Array("s"=>$resource->getTableName('sponsorship/sponsorship')),
20
  Array("*"=>"s.*"))
app/code/community/Auguria/Sponsorship/Model/Core/Email/Template.php CHANGED
@@ -34,15 +34,15 @@ class Auguria_Sponsorship_Model_Core_Email_Template extends Mage_Core_Model_Emai
34
 
35
  $this->setUseAbsoluteLinks(true);
36
  $text = $this->getProcessedTemplate($variables, true);
37
-
38
  $boundary = '--BOUNDARY_TEXT_OF_CHOICE_FOR_AUGURIA_SPONSORSHIP';
39
-
40
  $boundary_location = strpos($text, $boundary);
41
  if ($boundary_location) {
42
  $stext = substr($text, 0, strpos($text, $boundary));
43
  $shtml = str_replace($boundary, '', substr($text, $boundary_location));
44
  $mail->setBodyText($stext);
45
- $mail->setBodyHTML($shtml);
46
  } else {
47
  if($this->isPlain()) {
48
  $mail->setBodyText($text);
@@ -50,8 +50,8 @@ class Auguria_Sponsorship_Model_Core_Email_Template extends Mage_Core_Model_Emai
50
  $mail->setBodyHTML($text);
51
  }
52
  }
53
-
54
-
55
  $mail->setSubject('=?utf-8?B?'.base64_encode($this->getProcessedTemplateSubject($variables)).'?=');
56
  $mail->setFrom($this->getSenderEmail(), $this->getSenderName());
57
 
@@ -59,7 +59,9 @@ class Auguria_Sponsorship_Model_Core_Email_Template extends Mage_Core_Model_Emai
59
  $mail->send(); // Zend_Mail warning..
60
  $this->_mail = null;
61
  }
62
- catch (Exception $e) {
 
 
63
  return false;
64
  }
65
 
34
 
35
  $this->setUseAbsoluteLinks(true);
36
  $text = $this->getProcessedTemplate($variables, true);
37
+
38
  $boundary = '--BOUNDARY_TEXT_OF_CHOICE_FOR_AUGURIA_SPONSORSHIP';
39
+
40
  $boundary_location = strpos($text, $boundary);
41
  if ($boundary_location) {
42
  $stext = substr($text, 0, strpos($text, $boundary));
43
  $shtml = str_replace($boundary, '', substr($text, $boundary_location));
44
  $mail->setBodyText($stext);
45
+ $mail->setBodyHTML($shtml);
46
  } else {
47
  if($this->isPlain()) {
48
  $mail->setBodyText($text);
50
  $mail->setBodyHTML($text);
51
  }
52
  }
53
+
54
+
55
  $mail->setSubject('=?utf-8?B?'.base64_encode($this->getProcessedTemplateSubject($variables)).'?=');
56
  $mail->setFrom($this->getSenderEmail(), $this->getSenderName());
57
 
59
  $mail->send(); // Zend_Mail warning..
60
  $this->_mail = null;
61
  }
62
+ catch (Exception $e)
63
+ {
64
+ Mage::log('An error occured while sending mail : '.$e->getMessage());
65
  return false;
66
  }
67
 
app/code/community/Auguria/Sponsorship/Model/Observer.php CHANGED
@@ -15,7 +15,7 @@ class Auguria_Sponsorship_Model_Observer
15
  $orderDate = $order->getUpdatedAt();
16
  $orderId = $order->getEntityId();
17
 
18
- //définition du client
19
  $cId = $order->getCustomerId();
20
 
21
  //definition du websiteid
@@ -173,7 +173,7 @@ class Auguria_Sponsorship_Model_Observer
173
  $log->save();
174
  }
175
 
176
- /*
177
  * Add sponsor points to sponsors
178
  */
179
  public function addSponsorsPoints($cId,$SPoints,$orderDate,$orderId)
@@ -287,7 +287,7 @@ class Auguria_Sponsorship_Model_Observer
287
  }
288
  }
289
 
290
- /*
291
  * Add sponsor points for a sponsor with special rate
292
  */
293
  public function addSponsorSpecialPoints($cId, $orderDate, $orderId, $orderTotal, $special_rate)
@@ -360,4 +360,135 @@ class Auguria_Sponsorship_Model_Observer
360
  $controller->getRequest()->setParam('sponsor_id', null);
361
  }
362
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
363
  }
15
  $orderDate = $order->getUpdatedAt();
16
  $orderId = $order->getEntityId();
17
 
18
+ //définition du client
19
  $cId = $order->getCustomerId();
20
 
21
  //definition du websiteid
173
  $log->save();
174
  }
175
 
176
+ /**
177
  * Add sponsor points to sponsors
178
  */
179
  public function addSponsorsPoints($cId,$SPoints,$orderDate,$orderId)
287
  }
288
  }
289
 
290
+ /**
291
  * Add sponsor points for a sponsor with special rate
292
  */
293
  public function addSponsorSpecialPoints($cId, $orderDate, $orderId, $orderTotal, $special_rate)
360
  $controller->getRequest()->setParam('sponsor_id', null);
361
  }
362
  }
363
+
364
+ /**
365
+ *
366
+ * Add fidelity points if customer subscribe to newletter while registration
367
+ * @param Varien_Event_Observer $observer
368
+ */
369
+ public function addNewsletterPoints($observer)
370
+ {
371
+ try
372
+ {
373
+ $newsletterPoints = Mage::getStoreConfig('sponsorship/fidelity/newsletter_points');
374
+ //Check if we must add points
375
+ if (isset($newsletterPoints) && $newsletterPoints > 0)
376
+ {
377
+ //Check if it's an account creation
378
+ $customer = $observer->getCustomer();
379
+ if (!$customer->getId())
380
+ {
381
+ //Check if he is subscribing to the newsletter
382
+ if ($customer->getIsSubscribed() == 1)
383
+ {
384
+ $fidelityPoints = 0;
385
+ $originalFidelityPoints = $customer->getFidelityPoints();
386
+ if (isset($originalFidelityPoints))
387
+ {
388
+ $fidelityPoints = $originalFidelityPoints;
389
+ }
390
+ $fidelityPoints = $fidelityPoints + $newsletterPoints;
391
+ $customer->setFidelityPoints($fidelityPoints);
392
+ }
393
+ }
394
+ }
395
+ }
396
+ catch (Exception $e)
397
+ {
398
+ Mage::log("An error occured while adding news letter points :".$e->getMessage());
399
+ }
400
+ }
401
+
402
+ /**
403
+ *
404
+ * Add fidelity points to customer and sponsorship points to sponsor on first order
405
+ * @param Varien_Event_Observer $observer
406
+ */
407
+ public function addFirstOrderPoints($observer)
408
+ {
409
+ try
410
+ {
411
+ $godsonFirstOrderPoints = Mage::getStoreConfig('sponsorship/fidelity/first_order_points');
412
+ $sponsorFirstOrderPoints = Mage::getStoreConfig('sponsorship/sponsor/godson_first_order_points');
413
+
414
+ //Check if we have to add points on first order
415
+ if ($godsonFirstOrderPoints>0 || $sponsorFirstOrderPoints>0)
416
+ {
417
+ $invoice = $observer->getInvoice();
418
+ $customerId = $invoice->getCustomerId();
419
+
420
+ //Get customer paid invoices
421
+ $invoices = Mage::getResourceModel('sales/order_invoice_collection');
422
+ $invoices->getSelect()->join(array('o'=>$invoices->getTable('sales/order')), 'main_table.order_id = o.entity_id','o.customer_id');
423
+
424
+ $invoices->addAttributeToSelect('state')
425
+ ->addAttributeToFilter('o.customer_id', $customerId)
426
+ ->addAttributeToFilter('main_table.state', Mage_Sales_Model_Order_Invoice::STATE_PAID);
427
+
428
+ if ($invoices->count() == 0)
429
+ {
430
+ $customer = Mage::getModel('customer/customer')->load($customerId);
431
+
432
+ //Add fidelity points to customer
433
+ if ($godsonFirstOrderPoints >0)
434
+ {
435
+ $fidelityPoints = 0;
436
+ $originalFidelityPoints = $customer->getFidelityPoints();
437
+ if (isset($originalFidelityPoints))
438
+ {
439
+ $fidelityPoints = $originalFidelityPoints;
440
+ }
441
+ $fidelityPoints = $fidelityPoints + $godsonFirstOrderPoints;
442
+ $customer->setFidelityPoints($fidelityPoints);
443
+ $customer->save();
444
+
445
+ //enregistrement dans les logs
446
+ $log = Mage::getModel('sponsorship/fidelitylog');
447
+ $data = array(
448
+ 'customer_id' => $customerId,
449
+ 'record_id' => 0,
450
+ 'record_type' => 'first',
451
+ 'datetime' => Mage::getModel('core/date')->gmtDate(),
452
+ 'points' => $godsonFirstOrderPoints
453
+ );
454
+ $log->setData($data);
455
+ $log->save();
456
+ }
457
+
458
+ //Add sponsorship points
459
+ $sponsorId = $customer->getSponsor();
460
+ if (isset($sponsorId) && $sponsorId>0 && $sponsorFirstOrderPoints>0)
461
+ {
462
+ $sponsor = Mage::getModel('customer/customer')->load($sponsorId);
463
+ $sponsorPoints = 0;
464
+ $originalSponsorPoints = $sponsor->getSponsorPoints();
465
+ if (isset($originalSponsorPoints))
466
+ {
467
+ $sponsorPoints = $originalSponsorPoints;
468
+ }
469
+ $sponsorPoints = $sponsorPoints + $sponsorFirstOrderPoints;
470
+ $sponsor->setSponsorPoints($sponsorPoints);
471
+ $sponsor->save();
472
+
473
+ //enregistrement dans les logs
474
+ $log = Mage::getModel('sponsorship/sponsorlog');
475
+ $data = array(
476
+ 'godson_id' => $customerId,
477
+ 'sponsor_id' => $sponsorId,
478
+ 'record_id' => 0,
479
+ 'record_type' => 'first',
480
+ 'datetime' => Mage::getModel('core/date')->gmtDate(),
481
+ 'points' => $sponsorFirstOrderPoints
482
+ );
483
+ $log->setData($data);
484
+ $log->save();
485
+ }
486
+ }
487
+ }
488
+ }
489
+ catch (Exception $e)
490
+ {
491
+ Mage::log("An error occured while adding first order points :".$e->getMessage());
492
+ }
493
+ }
494
  }
app/code/community/Auguria/Sponsorship/controllers/Adminhtml/LinkController.php CHANGED
@@ -9,18 +9,21 @@ class Auguria_Sponsorship_Adminhtml_LinkController extends Mage_Adminhtml_Contro
9
  {
10
 
11
  protected function _initAction() {
12
- $this->loadLayout()
13
- ->_setActiveMenu('link/items')
14
- ->_addBreadcrumb(Mage::helper('adminhtml')->__('Items Manager'), Mage::helper('adminhtml')->__('Item Manager'));
15
-
 
 
16
  return $this;
17
- }
18
-
19
- public function indexAction() {
 
20
  $this->_initAction()
21
  ->renderLayout();
22
  }
23
-
24
  public function editAction() {
25
  $id = $this->getRequest()->getParam('id');
26
  $model = Mage::getModel('customer/customer')->load($id);
9
  {
10
 
11
  protected function _initAction() {
12
+ Mage::log('before load layout');
13
+ $layout = $this->loadLayout();
14
+ Mage::log('after load layout');
15
+ $layout->_setActiveMenu('link/items');
16
+ $layout->_addBreadcrumb(Mage::helper('adminhtml')->__('Items Manager'), Mage::helper('adminhtml')->__('Item Manager'));
17
+ Mage::log('after add breadrcrumb');
18
  return $this;
19
+ }
20
+
21
+ public function indexAction()
22
+ {
23
  $this->_initAction()
24
  ->renderLayout();
25
  }
26
+
27
  public function editAction() {
28
  $id = $this->getRequest()->getParam('id');
29
  $model = Mage::getModel('customer/customer')->load($id);
app/code/community/Auguria/Sponsorship/controllers/Customer/AccountController.php CHANGED
@@ -8,8 +8,6 @@
8
  require_once 'Mage/Customer/controllers/AccountController.php';
9
  class Auguria_Sponsorship_Customer_AccountController extends Mage_Customer_AccountController
10
  {
11
-
12
-
13
  public function createPostAction()
14
  {
15
  if ($this->_getSession()->isLoggedIn()) {
@@ -23,11 +21,15 @@ class Auguria_Sponsorship_Customer_AccountController extends Mage_Customer_Accou
23
  $customer = Mage::getModel('customer/customer')->setId(null);
24
  }
25
 
26
- foreach (Mage::getConfig()->getFieldset('customer_account') as $code=>$node) {
27
- if ($node->is('create') && ($value = $this->getRequest()->getParam($code)) !== null) {
28
- $customer->setData($code, $value);
29
- }
30
- }
 
 
 
 
31
 
32
  if ($this->getRequest()->getParam('is_subscribed', false)) {
33
  $customer->setIsSubscribed(1);
@@ -62,9 +64,9 @@ class Auguria_Sponsorship_Customer_AccountController extends Mage_Customer_Accou
62
  $cookie->delete('sponsorship_lastname');
63
  }
64
  }
65
-
66
  //Fin modification createPostAction()
67
-
68
  try {
69
  $validationCustomer = $customer->validate();
70
  if (is_array($validationCustomer)) {
@@ -113,7 +115,7 @@ class Auguria_Sponsorship_Customer_AccountController extends Mage_Customer_Accou
113
 
114
  $this->_redirectError(Mage::getUrl('*/*/create', array('_secure'=>true)));
115
  }
116
-
117
  public function editPostAction()
118
  {
119
  if (!$this->_validateFormKey()) {
@@ -125,13 +127,15 @@ class Auguria_Sponsorship_Customer_AccountController extends Mage_Customer_Accou
125
  ->setId($this->_getSession()->getCustomerId())
126
  ->setWebsiteId($this->_getSession()->getCustomer()->getWebsiteId());
127
 
128
- $fields = Mage::getConfig()->getFieldset('customer_account');
129
- foreach ($fields as $code=>$node) {
130
- if ($node->is('update') && ($value = $this->getRequest()->getParam($code)) !== null) {
131
- $customer->setData($code, $value);
132
- }
133
- }
134
-
 
 
135
  /*
136
  * Ajout des champs iban et siret
137
  */
@@ -142,14 +146,14 @@ class Auguria_Sponsorship_Customer_AccountController extends Mage_Customer_Accou
142
  $customerIban = str_replace("-","",$customerIban);
143
  $customer->setData('iban', $customerIban);
144
  }
145
-
146
  if ($this->getRequest()->getParam('siret')) {
147
  $customerSiret = $this->getRequest()->getPost('siret');
148
  $customerSiret = str_replace(CHR(32),"",$customerSiret);
149
  $customerSiret = str_replace("-","",$customerSiret);
150
  $customer->setData('siret', $customerSiret);
151
  }
152
-
153
  $errors = $customer->validate();
154
  if (!is_array($errors)) {
155
  $errors = array();
8
  require_once 'Mage/Customer/controllers/AccountController.php';
9
  class Auguria_Sponsorship_Customer_AccountController extends Mage_Customer_AccountController
10
  {
 
 
11
  public function createPostAction()
12
  {
13
  if ($this->_getSession()->isLoggedIn()) {
21
  $customer = Mage::getModel('customer/customer')->setId(null);
22
  }
23
 
24
+ $data = $this->_filterPostData($this->getRequest()->getPost());
25
+ foreach (Mage::getConfig()->getFieldset('customer_account') as $code=>$node) {
26
+ if ($node->is('create') && isset($data[$code])) {
27
+ if ($code == 'email') {
28
+ $data[$code] = trim($data[$code]);
29
+ }
30
+ $customer->setData($code, $data[$code]);
31
+ }
32
+ }
33
 
34
  if ($this->getRequest()->getParam('is_subscribed', false)) {
35
  $customer->setIsSubscribed(1);
64
  $cookie->delete('sponsorship_lastname');
65
  }
66
  }
67
+
68
  //Fin modification createPostAction()
69
+
70
  try {
71
  $validationCustomer = $customer->validate();
72
  if (is_array($validationCustomer)) {
115
 
116
  $this->_redirectError(Mage::getUrl('*/*/create', array('_secure'=>true)));
117
  }
118
+
119
  public function editPostAction()
120
  {
121
  if (!$this->_validateFormKey()) {
127
  ->setId($this->_getSession()->getCustomerId())
128
  ->setWebsiteId($this->_getSession()->getCustomer()->getWebsiteId());
129
 
130
+ $fields = Mage::getConfig()->getFieldset('customer_account');
131
+ $data = $this->_filterPostData($this->getRequest()->getPost());
132
+
133
+ foreach ($fields as $code=>$node) {
134
+ if ($node->is('update') && isset($data[$code])) {
135
+ $customer->setData($code, $data[$code]);
136
+ }
137
+ }
138
+
139
  /*
140
  * Ajout des champs iban et siret
141
  */
146
  $customerIban = str_replace("-","",$customerIban);
147
  $customer->setData('iban', $customerIban);
148
  }
149
+
150
  if ($this->getRequest()->getParam('siret')) {
151
  $customerSiret = $this->getRequest()->getPost('siret');
152
  $customerSiret = str_replace(CHR(32),"",$customerSiret);
153
  $customerSiret = str_replace("-","",$customerSiret);
154
  $customer->setData('siret', $customerSiret);
155
  }
156
+
157
  $errors = $customer->validate();
158
  if (!is_array($errors)) {
159
  $errors = array();
app/code/community/Auguria/Sponsorship/controllers/IndexController.php CHANGED
@@ -6,7 +6,7 @@
6
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
7
  */
8
  class Auguria_Sponsorship_IndexController extends Mage_Core_Controller_Front_Action
9
- {
10
  public function preDispatch()
11
  {
12
  parent::preDispatch();
@@ -27,7 +27,7 @@ class Auguria_Sponsorship_IndexController extends Mage_Core_Controller_Front_Act
27
  }
28
  }
29
  }
30
-
31
  public function indexAction()
32
  {
33
  $this->loadLayout();
@@ -36,7 +36,7 @@ class Auguria_Sponsorship_IndexController extends Mage_Core_Controller_Front_Act
36
  $this->_initLayoutMessages('customer/session');
37
  $this->_initLayoutMessages('catalog/session');
38
  $this->renderLayout();
39
-
40
  //Ajout d'un message d'erreur si l'envoie de mail n'est pas autorisé sans commande et que le client n'a pas commandé
41
  if (!Mage::getStoreConfig('sponsorship/sponsor/sponsor_optional_order')) {
42
  if (!Mage::helper('sponsorship/data')->haveOrder()) {
@@ -44,7 +44,7 @@ class Auguria_Sponsorship_IndexController extends Mage_Core_Controller_Front_Act
44
  }
45
  }
46
  }
47
-
48
  public function sendAction()
49
  {
50
  $post = $this->getRequest()->getPost();
@@ -102,7 +102,7 @@ class Auguria_Sponsorship_IndexController extends Mage_Core_Controller_Front_Act
102
  Mage::getSingleton('customer/session')->addError($this->__("Please check the form fields."));
103
  $this->_redirect("*/*/");
104
  }
105
- $translate->setTranslateInline(true);
106
  $this->_redirect("*/*/");
107
  }
108
  else
@@ -110,5 +110,5 @@ class Auguria_Sponsorship_IndexController extends Mage_Core_Controller_Front_Act
110
  $this->_redirect("*/*/");
111
  }
112
  }
113
-
114
  }
6
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
7
  */
8
  class Auguria_Sponsorship_IndexController extends Mage_Core_Controller_Front_Action
9
+ {
10
  public function preDispatch()
11
  {
12
  parent::preDispatch();
27
  }
28
  }
29
  }
30
+
31
  public function indexAction()
32
  {
33
  $this->loadLayout();
36
  $this->_initLayoutMessages('customer/session');
37
  $this->_initLayoutMessages('catalog/session');
38
  $this->renderLayout();
39
+
40
  //Ajout d'un message d'erreur si l'envoie de mail n'est pas autorisé sans commande et que le client n'a pas commandé
41
  if (!Mage::getStoreConfig('sponsorship/sponsor/sponsor_optional_order')) {
42
  if (!Mage::helper('sponsorship/data')->haveOrder()) {
44
  }
45
  }
46
  }
47
+
48
  public function sendAction()
49
  {
50
  $post = $this->getRequest()->getPost();
102
  Mage::getSingleton('customer/session')->addError($this->__("Please check the form fields."));
103
  $this->_redirect("*/*/");
104
  }
105
+ $translate->setTranslateInline(true);
106
  $this->_redirect("*/*/");
107
  }
108
  else
110
  $this->_redirect("*/*/");
111
  }
112
  }
113
+
114
  }
app/code/community/Auguria/Sponsorship/etc/config.xml CHANGED
@@ -10,7 +10,7 @@
10
  <config>
11
  <modules>
12
  <Auguria_Sponsorship>
13
- <version>1.0.7</version>
14
  </Auguria_Sponsorship>
15
  </modules>
16
  <frontend>
@@ -164,17 +164,33 @@
164
  <method>affiliate</method>
165
  </affiliate>
166
  </observers>
167
- </controller_action_predispatch>
168
- <!-- Incrémentation des points lors du paiement -->
169
  <sales_order_payment_pay>
170
  <observers>
 
171
  <calc_points>
172
  <type>singleton</type>
173
  <class>Auguria_Sponsorship_Model_Observer</class>
174
  <method>calcPoints</method>
175
  </calc_points>
 
 
 
 
 
 
176
  </observers>
177
  </sales_order_payment_pay>
 
 
 
 
 
 
 
 
 
 
178
  </events>
179
  <fieldsets>
180
  <sales_convert_quote_item>
@@ -327,6 +343,7 @@
327
  <sponsor_link_validity>365</sponsor_link_validity>
328
  <sponsor_levels>100</sponsor_levels>
329
  <sponsor_percent>50</sponsor_percent>
 
330
  </sponsor>
331
  <invitation_email>
332
  <sponsor_invitation_validity>365</sponsor_invitation_validity>
@@ -342,6 +359,8 @@
342
  <fidelity_max_cash>350</fidelity_max_cash>
343
  <fidelity_time_max_cash>90</fidelity_time_max_cash>
344
  <fidelity_points_to_cash>1</fidelity_points_to_cash>
 
 
345
  </fidelity>
346
  <change>
347
  <email_template_coupon>sponsorship_email_coupon</email_template_coupon>
10
  <config>
11
  <modules>
12
  <Auguria_Sponsorship>
13
+ <version>1.0.9</version>
14
  </Auguria_Sponsorship>
15
  </modules>
16
  <frontend>
164
  <method>affiliate</method>
165
  </affiliate>
166
  </observers>
167
+ </controller_action_predispatch>
 
168
  <sales_order_payment_pay>
169
  <observers>
170
+ <!-- Incrémentation des points lors du paiement -->
171
  <calc_points>
172
  <type>singleton</type>
173
  <class>Auguria_Sponsorship_Model_Observer</class>
174
  <method>calcPoints</method>
175
  </calc_points>
176
+ <!-- Add first order points -->
177
+ <auguria_sponsorship_first_order>
178
+ <type>singleton</type>
179
+ <class>Auguria_Sponsorship_Model_Observer</class>
180
+ <method>addFirstOrderPoints</method>
181
+ </auguria_sponsorship_first_order>
182
  </observers>
183
  </sales_order_payment_pay>
184
+ <!-- Add points while customer register -->
185
+ <customer_save_before>
186
+ <observers>
187
+ <auguria_sponsorship_register_newsletter>
188
+ <type>singleton</type>
189
+ <class>Auguria_Sponsorship_Model_Observer</class>
190
+ <method>addNewsletterPoints</method>
191
+ </auguria_sponsorship_register_newsletter>
192
+ </observers>
193
+ </customer_save_before>
194
  </events>
195
  <fieldsets>
196
  <sales_convert_quote_item>
343
  <sponsor_link_validity>365</sponsor_link_validity>
344
  <sponsor_levels>100</sponsor_levels>
345
  <sponsor_percent>50</sponsor_percent>
346
+ <godson_first_order_points>0</godson_first_order_points>
347
  </sponsor>
348
  <invitation_email>
349
  <sponsor_invitation_validity>365</sponsor_invitation_validity>
359
  <fidelity_max_cash>350</fidelity_max_cash>
360
  <fidelity_time_max_cash>90</fidelity_time_max_cash>
361
  <fidelity_points_to_cash>1</fidelity_points_to_cash>
362
+ <newsletter_points>0</newsletter_points>
363
+ <first_order_points>0</first_order_points>
364
  </fidelity>
365
  <change>
366
  <email_template_coupon>sponsorship_email_coupon</email_template_coupon>
app/code/community/Auguria/Sponsorship/etc/system.xml CHANGED
@@ -124,6 +124,15 @@
124
  <show_in_website>1</show_in_website>
125
  <show_in_store>1</show_in_store>
126
  </sponsor_percent>
 
 
 
 
 
 
 
 
 
127
  </fields>
128
  </sponsor>
129
  <fidelity translate="label">
@@ -197,6 +206,24 @@
197
  <show_in_website>1</show_in_website>
198
  <show_in_store>1</show_in_store>
199
  </fidelity_points_to_cash>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
200
  </fields>
201
  </fidelity>
202
  <invitation_email translate="label">
@@ -301,7 +328,7 @@
301
  <show_in_store>1</show_in_store>
302
  </private_key>
303
  </fields>
304
- </open_inviter>
305
  </groups>
306
  </sponsorship>
307
  </sections>
124
  <show_in_website>1</show_in_website>
125
  <show_in_store>1</show_in_store>
126
  </sponsor_percent>
127
+ <godson_first_order_points>
128
+ <label>Amount of winning points for the first godson order</label>
129
+ <frontend_type>text</frontend_type>
130
+ <backend_model>sponsorship/adminhtml_system_config_backend_sponsorship_naturalNumber</backend_model>
131
+ <sort_order>13</sort_order>
132
+ <show_in_default>1</show_in_default>
133
+ <show_in_website>1</show_in_website>
134
+ <show_in_store>1</show_in_store>
135
+ </godson_first_order_points>
136
  </fields>
137
  </sponsor>
138
  <fidelity translate="label">
206
  <show_in_website>1</show_in_website>
207
  <show_in_store>1</show_in_store>
208
  </fidelity_points_to_cash>
209
+ <newsletter_points>
210
+ <label>Amount of winning points when subscribe to newsletter on account creation</label>
211
+ <frontend_type>text</frontend_type>
212
+ <backend_model>sponsorship/adminhtml_system_config_backend_sponsorship_naturalNumber</backend_model>
213
+ <sort_order>8</sort_order>
214
+ <show_in_default>1</show_in_default>
215
+ <show_in_website>1</show_in_website>
216
+ <show_in_store>1</show_in_store>
217
+ </newsletter_points>
218
+ <first_order_points>
219
+ <label>Amount of winning points for first order</label>
220
+ <frontend_type>text</frontend_type>
221
+ <backend_model>sponsorship/adminhtml_system_config_backend_sponsorship_naturalNumber</backend_model>
222
+ <sort_order>9</sort_order>
223
+ <show_in_default>1</show_in_default>
224
+ <show_in_website>1</show_in_website>
225
+ <show_in_store>1</show_in_store>
226
+ </first_order_points>
227
  </fields>
228
  </fidelity>
229
  <invitation_email translate="label">
328
  <show_in_store>1</show_in_store>
329
  </private_key>
330
  </fields>
331
+ </open_inviter>
332
  </groups>
333
  </sponsorship>
334
  </sections>
app/code/community/Auguria/Sponsorship/sql/sponsorship_setup/mysql4-upgrade-1.0.7-1.0.8.php ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Add record type 'first' for first order points in sponsor and fidelity logs
4
+ * @category Auguria
5
+ * @package Auguria_Sponsorship
6
+ * @author Auguria
7
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
8
+ */
9
+ $installer = $this;
10
+
11
+ $installer->startSetup();
12
+
13
+ $installer->run("
14
+
15
+ ALTER TABLE {$this->getTable('sponsorship_fidelity_log')} CHANGE `record_type` `record_type`
16
+ ENUM('order', 'gift', 'coupon_code', 'cash', 'admin', 'first') NOT NULL;
17
+ ALTER TABLE {$this->getTable('sponsorship_sponsor_log')} CHANGE `record_type` `record_type`
18
+ ENUM('order', 'gift', 'coupon_code', 'cash', 'admin', 'first') NOT NULL;
19
+
20
+ ");
21
+ $installer->endSetup();
app/design/frontend/default/default/layout/sponsorship.xml CHANGED
@@ -124,8 +124,8 @@
124
  <!-- Ajout d'un lien vers le détail des points -->
125
  <customer_account>
126
  <reference name="customer_account_navigation">
127
- <action ifconfig="sponsorship/fidelity/fidelity_enabled" method="addLink" translate="label" module="sponsorship"><name>fidelity_points</name><path>sponsorship/fidelitypoints/</path><label>Fidélité</label></action>
128
- <action ifconfig="sponsorship/sponsor/sponsor_enabled" method="addLink" translate="label" module="sponsorship"><name>sponsor_points</name><path>sponsorship/sponsorpoints/</path><label>Parrainage</label></action>
129
  </reference>
130
  </customer_account>
131
 
124
  <!-- Ajout d'un lien vers le détail des points -->
125
  <customer_account>
126
  <reference name="customer_account_navigation">
127
+ <action ifconfig="sponsorship/fidelity/fidelity_enabled" method="addLink" translate="label" module="sponsorship"><name>fidelity_points</name><path>sponsorship/fidelitypoints/</path><label>Credit fidelity points</label></action>
128
+ <action ifconfig="sponsorship/sponsor/sponsor_enabled" method="addLink" translate="label" module="sponsorship"><name>sponsor_points</name><path>sponsorship/sponsorpoints/</path><label>Credit sponsor points</label></action>
129
  </reference>
130
  </customer_account>
131
 
app/design/frontend/default/default/template/sponsorship/customer/account/fidelitypointsdetail.phtml CHANGED
@@ -35,7 +35,7 @@
35
  $_commandes = $this->getCommandes();
36
  if ($_commandes):?>
37
 
38
- <h2 class="title"><?php echo $this->__('Your lastest orders') ?></h2>
39
  <div id="last-orders-table"></div>
40
 
41
  <script type="text/javascript">
@@ -66,7 +66,7 @@ new TableOrderer('last-orders-table',{data : lastOrders, cols : lastOrdersCols},
66
  </script>
67
  <br/>
68
  <?php endif; //fin de la vérification qu'il y a eu des commandes ?>
69
-
70
  <h2><?php echo $this->__('Use of your fidelity points') ?></h2>
71
  <div>
72
  <?php
@@ -76,7 +76,7 @@ new TableOrderer('last-orders-table',{data : lastOrders, cols : lastOrdersCols},
76
  ?>
77
  </div>
78
  <!--Liste des échanges réalisés-->
79
-
80
  <?php if ($this->hasChange('fidelity')): //Début vérification qu'il y a eu des échanges'?>
81
  <div>
82
  <?php echo $this->__("Your points exchanges:") ?>
@@ -131,6 +131,7 @@ new TableOrderer('fidelity-change-table',{data : fidelityChange, cols : fidelity
131
  <?php if ($this->getFidelityCouponConfig()):?>
132
  <li>
133
  <a href="<?php echo Mage::getUrl('*/*/change', Array('module'=>'fidelity','type'=>'coupon')) ?>"><?php echo $this->__('Vouchers') ?></a>
 
134
  </li>
135
  <?php endif;?>
136
  <?php if ($this->getFidelityGiftConfig()):?>
@@ -154,6 +155,7 @@ new TableOrderer('fidelity-change-table',{data : fidelityChange, cols : fidelity
154
  <?php if ($this->getFidelityCouponConfig()):?>
155
  <li>
156
  <?php echo $this->__('Vouchers') ?>
 
157
  </li>
158
  <?php endif;?>
159
  <?php if ($this->getFidelityGiftConfig()):?>
35
  $_commandes = $this->getCommandes();
36
  if ($_commandes):?>
37
 
38
+ <h2 class="title"><?php echo $this->__('Your lastest orders') ?></h2>
39
  <div id="last-orders-table"></div>
40
 
41
  <script type="text/javascript">
66
  </script>
67
  <br/>
68
  <?php endif; //fin de la vérification qu'il y a eu des commandes ?>
69
+
70
  <h2><?php echo $this->__('Use of your fidelity points') ?></h2>
71
  <div>
72
  <?php
76
  ?>
77
  </div>
78
  <!--Liste des échanges réalisés-->
79
+
80
  <?php if ($this->hasChange('fidelity')): //Début vérification qu'il y a eu des échanges'?>
81
  <div>
82
  <?php echo $this->__("Your points exchanges:") ?>
131
  <?php if ($this->getFidelityCouponConfig()):?>
132
  <li>
133
  <a href="<?php echo Mage::getUrl('*/*/change', Array('module'=>'fidelity','type'=>'coupon')) ?>"><?php echo $this->__('Vouchers') ?></a>
134
+ <?php echo $this->__(':You will receive an email with the discount code you can use on your next order.') ?>
135
  </li>
136
  <?php endif;?>
137
  <?php if ($this->getFidelityGiftConfig()):?>
155
  <?php if ($this->getFidelityCouponConfig()):?>
156
  <li>
157
  <?php echo $this->__('Vouchers') ?>
158
+ <?php echo $this->__(':You will receive an email with the discount code you can use on your next order.') ?>
159
  </li>
160
  <?php endif;?>
161
  <?php if ($this->getFidelityGiftConfig()):?>
app/design/frontend/default/default/template/sponsorship/customer/account/sponsorpointsdetail.phtml CHANGED
@@ -35,9 +35,9 @@
35
  <p>
36
  <a href="<?php echo $this->getUrl('sponsorship') ?>"><?php echo $this->__('Sponsor friends')?></a>
37
  </p>
38
- <?php
39
  /**
40
- *
41
  * Invistations
42
  */
43
  ?>
@@ -47,7 +47,7 @@
47
  $invits = $this->getInvits();
48
  if ($invits):
49
  ?>
50
-
51
 
52
  <div id="invit-table"></div>
53
 
@@ -91,10 +91,10 @@ invitsTable = new TableOrderer('invit-table',{data : invits, cols : invitsCols,
91
  <?php echo $this->__("You do not have yet send invit."); ?>
92
  </div>
93
  <?php endif; //fin de vérifivcation invitations en cours?>
94
-
95
- <?php
96
  /**
97
- *
98
  * Filleuls
99
  */
100
  ?>
@@ -103,7 +103,7 @@ invitsTable = new TableOrderer('invit-table',{data : invits, cols : invitsCols,
103
  <?php $_parrainages = $this->getParrainages();
104
  if ($_parrainages): //si l'utilisateur a déjà parrainé?>
105
 
106
-
107
  <div id="sponsor-table"></div>
108
 
109
  <script type="text/javascript">
@@ -152,9 +152,9 @@ sponsorships = new Array(
152
  </div>
153
  <?php endif; //fin verificatio si il a parrainé ?>
154
 
155
- <?php
156
  /**
157
- *
158
  * Points
159
  */
160
  ?>
@@ -226,6 +226,7 @@ sponsorshipChanges = new Array(
226
  <?php if ($this->getSponsorCouponConfig()):?>
227
  <li>
228
  <a href="<?php echo Mage::getUrl('*/*/change', Array('module'=>'sponsor','type'=>'coupon')) ?>"><?php echo $this->__('Vouchers') ?></a>
 
229
  </li>
230
  <?php endif;?>
231
  <?php if ($this->getSponsorGiftConfig()):?>
@@ -250,6 +251,7 @@ sponsorshipChanges = new Array(
250
  <?php if ($this->getSponsorCouponConfig()):?>
251
  <li>
252
  <?php echo $this->__('Vouchers') ?>
 
253
  </li>
254
  <?php endif;?>
255
  <?php if ($this->getSponsorGiftConfig()):?>
35
  <p>
36
  <a href="<?php echo $this->getUrl('sponsorship') ?>"><?php echo $this->__('Sponsor friends')?></a>
37
  </p>
38
+ <?php
39
  /**
40
+ *
41
  * Invistations
42
  */
43
  ?>
47
  $invits = $this->getInvits();
48
  if ($invits):
49
  ?>
50
+
51
 
52
  <div id="invit-table"></div>
53
 
91
  <?php echo $this->__("You do not have yet send invit."); ?>
92
  </div>
93
  <?php endif; //fin de vérifivcation invitations en cours?>
94
+
95
+ <?php
96
  /**
97
+ *
98
  * Filleuls
99
  */
100
  ?>
103
  <?php $_parrainages = $this->getParrainages();
104
  if ($_parrainages): //si l'utilisateur a déjà parrainé?>
105
 
106
+
107
  <div id="sponsor-table"></div>
108
 
109
  <script type="text/javascript">
152
  </div>
153
  <?php endif; //fin verificatio si il a parrainé ?>
154
 
155
+ <?php
156
  /**
157
+ *
158
  * Points
159
  */
160
  ?>
226
  <?php if ($this->getSponsorCouponConfig()):?>
227
  <li>
228
  <a href="<?php echo Mage::getUrl('*/*/change', Array('module'=>'sponsor','type'=>'coupon')) ?>"><?php echo $this->__('Vouchers') ?></a>
229
+ <?php echo $this->__(':You will receive an email with the discount code you can use on your next order.') ?>
230
  </li>
231
  <?php endif;?>
232
  <?php if ($this->getSponsorGiftConfig()):?>
251
  <?php if ($this->getSponsorCouponConfig()):?>
252
  <li>
253
  <?php echo $this->__('Vouchers') ?>
254
+ <?php echo $this->__(':You will receive an email with the discount code you can use on your next order.') ?>
255
  </li>
256
  <?php endif;?>
257
  <?php if ($this->getSponsorGiftConfig()):?>
app/design/frontend/default/default/template/sponsorship/customer/form/edit.phtml CHANGED
@@ -53,11 +53,11 @@
53
  <?php $_gender = $this->getLayout()->createBlock('customer/widget_gender') ?>
54
  <?php if ($_gender->isEnabled()): ?>
55
  <li><?php echo $_gender->setGender($this->getCustomer()->getGender())->toHtml() ?></li>
56
- <?php endif ?>
57
  <?php $_virement = $this->getLayout()->createBlock('sponsorship/customer_widget_virement') ?>
58
  <?php
59
  /**
60
- * Start Auguria_Sponsorship custom to display IBAN & SIRET fields
61
  */
62
  if ($_virement->isEnabled()): ?>
63
  <li><?php echo $_virement->setIban($this->getCustomer()->getIban())
53
  <?php $_gender = $this->getLayout()->createBlock('customer/widget_gender') ?>
54
  <?php if ($_gender->isEnabled()): ?>
55
  <li><?php echo $_gender->setGender($this->getCustomer()->getGender())->toHtml() ?></li>
56
+ <?php endif ?>
57
  <?php $_virement = $this->getLayout()->createBlock('sponsorship/customer_widget_virement') ?>
58
  <?php
59
  /**
60
+ * Start Auguria_Sponsorship custom to display IBAN & SIRET fields
61
  */
62
  if ($_virement->isEnabled()): ?>
63
  <li><?php echo $_virement->setIban($this->getCustomer()->getIban())
app/design/frontend/default/default/template/sponsorship/customer/form/register.phtml CHANGED
@@ -22,7 +22,7 @@
22
  * @package Mage
23
  * @copyright Copyright (c) 2008 Irubin Consulting Inc. DBA Varien (http://www.varien.com)
24
  * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
-
26
  * @category Auguria
27
  * @package Auguria_Sponsorship
28
  * @author Auguria
@@ -62,7 +62,7 @@
62
  {
63
  echo $this->htmlEscape(Mage::getBlockSingleton('sponsorship/customer_widget_name')-> getInvit('email'));
64
  }
65
- else
66
  {
67
  echo $this->htmlEscape($this->getFormData()->getEmail());
68
  }
@@ -188,7 +188,7 @@
188
  </div>
189
  <div class="buttons-set">
190
  <p class="required"><?php echo $this->__('* Required Fields') ?></p>
191
- <p class="back-link"><a href="<?php echo $this->escapeUrl($this->getBackUrl()) ?>" class="back-link"><small>&laquo; </small><?php echo $this->__('Back') ?></a></p>
192
  <button type="submit" title="<?php echo $this->__('Submit') ?>" class="button"><span><span><?php echo $this->__('Submit') ?></span></span></button>
193
  </div>
194
  </form>
22
  * @package Mage
23
  * @copyright Copyright (c) 2008 Irubin Consulting Inc. DBA Varien (http://www.varien.com)
24
  * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
+
26
  * @category Auguria
27
  * @package Auguria_Sponsorship
28
  * @author Auguria
62
  {
63
  echo $this->htmlEscape(Mage::getBlockSingleton('sponsorship/customer_widget_name')-> getInvit('email'));
64
  }
65
+ else
66
  {
67
  echo $this->htmlEscape($this->getFormData()->getEmail());
68
  }
188
  </div>
189
  <div class="buttons-set">
190
  <p class="required"><?php echo $this->__('* Required Fields') ?></p>
191
+ <p class="back-link"><a href="<?php echo $this->urlEscape($this->getBackUrl()) ?>" class="back-link"><small>&laquo; </small><?php echo $this->__('Back') ?></a></p>
192
  <button type="submit" title="<?php echo $this->__('Submit') ?>" class="button"><span><span><?php echo $this->__('Submit') ?></span></span></button>
193
  </div>
194
  </form>
app/locale/es_ES/Auguria_Sponsorship.csv ADDED
@@ -0,0 +1,217 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "Action","Acción"
2
+ ":You will receive an email with the discount code you can use on your next order.",": Usted recibirá un correo electrónico con el código de descuento que puede utilizar en su próximo pedido."
3
+ "%s is already an email to our customers","%s está ya preparado un email para nuestros clientes"
4
+ "%s points exchange for customer (%s)","%s puntos a cambiar por el cliente (%s)"
5
+ "%s vouchers points exchange","%s intercambio de puntos de bonos (vales)"
6
+ "%s' is not a valid number.","%s' no es un número válido."
7
+ "%s' is not an integer.","%s' no es un entero."
8
+ "%s' is not greater than 0.","%s' no es mayor que 0"
9
+ "<a href='%s'>%s</a>","<a href='%s'>%s</a>"
10
+ "A value is required.","Un valor es requerido."
11
+ "Activated","Activado"
12
+ "Active godsons:","Ahijados activos:"
13
+ "Add a change","Agregar un cambio"
14
+ "Add a provider","Añadir un proveedor"
15
+ "Add a sponsorship","Agregar Patrocinio"
16
+ "Add an invitation","Agregar una Invitación"
17
+ "Add recipients","Añadir destinatarios"
18
+ "Address book provider:","Proveedor de la libreta de direcciones:"
19
+ "Allow to send invitations to customers who have never ordered","Permitir el envίo de invitaciones a clientes que nunca han hecho un pedido"
20
+ "Allows customers to import addressbook/contacts from different email providers like Yahoo, Gmail, Hotmail, Live etc. using different CMS software like Drupal, Joomla etc. or forum software like PHPBB, SMF etc. Learn more on <a href='http://openinviter.com'>openinviter.com</a>","Permite a los clientes importar la libreta de direcciones / contactos de diferentes proveedores de correo electrónico como Yahoo, Gmail, Hotmail, etc Live por medio de diferentes software de CMS como Drupal, Joomla, etc o software para foros como PHPBB, SMF, etc Más información en <a href='http://openinviter.com'>openinviter.com</a>"
21
+ "An error occurred while saving your request.","Se produjo un error al guardar su solicitud. "
22
+ "An error occurred while sending mail.","Se produjo un error al enviar el correo."
23
+ "An error occurred, the mail to %s could not be delivred.","Ocurrió un error. El correo para %s no pudo enviarse."
24
+ "An exception occured !","¡Ocurrió una excepción! "
25
+ "And it ends as follows:","Y termina de la siguiente manera: "
26
+ "Are you sure to process mass action?","¿Estás seguro de procesar la acción masiva? "
27
+ "But it could not be saved.","Pero no ha podido guardarse"
28
+ "Calculation period of the maximum allowed for an individual (days)","Periodo de cálculo del máximo permitido para un usuario (dίas)"
29
+ "Campany number","SIRET"
30
+ "Canceled","Cancelado"
31
+ "Cash","Caja"
32
+ "cash","Caja"
33
+ "Cash exchange enabled","Cambio de caja habilitado"
34
+ "Change information","Información de cambio"
35
+ "Change your points into:","Canjee sus puntos:"
36
+ "Check or uncheck all","Marcar o Desmarcar todo"
37
+ "Choose your provider","Selecciones su proveedor"
38
+ "Conversion rate of points in currency","Ratio de conversión de puntos en moneda"
39
+ "coupon","cupón"
40
+ "Creation date","Dίa de creación"
41
+ "Credit fidelity points","Crédito puntos de fidelidad"
42
+ "Credit sponsor points","Crédito puntos de patrocinio"
43
+ "Customer","Cliente"
44
+ "Customer ID","ID de cliente"
45
+ "Customer name","Nombre del cliente"
46
+ "Date","Dίa de creación"
47
+ "Date first invitation","Dίa de la primera invitación"
48
+ "Date last mail","Dίa del último correo"
49
+ "Dear %s %s,","Estimado %s %s,"
50
+ "Details","Detalles"
51
+ "Edit","Editar"
52
+ "Edition of the change '%s'","Edición del cambio '%s'"
53
+ "Edition of the invitation '%s'","Edición de la invitación '%s'"
54
+ "Edition of the Open inviter provider '%s'","Edición del proveedor de Open Inviter '%s'"
55
+ "Edition of the sponsorship '%s'","Edición del patrocinio '%s'"
56
+ "Email missing !","¡Falta la dirección de correo!"
57
+ "Email Providers","Proveedores de correo"
58
+ "emptyResults","Resultados vacίos"
59
+ "Enter the cash you want.","Indique el efectivo que desea."
60
+ "Enter the points you want to convert.","Indique los puntos que quiere convertir."
61
+ "errorData","Error de datos"
62
+ "errorURL","Error de URL"
63
+ "Exchange detail","Detalles del cambio"
64
+ "Exchange of your %s points into %s","Intercambio de puntos de su% s en% s "
65
+ "Exported","Exportado"
66
+ "Fidélité","Fidelidad"
67
+ "Fidelity","Fidelidad "
68
+ "fidelity","fidelidad "
69
+ "Fidelity and Sponsorship","Fidelidad y Patrocinio"
70
+ "Fidelity balance:","Balance de Fidelidad:"
71
+ "Fidelity module activated","Módulo de Fidelidad activado"
72
+ "Fidelity options","Opciones de fidelidad"
73
+ "Fidelity points","Puntos de fidelidad"
74
+ "Fidelity points by fixed amount","Puntos de fidelidad por cantidad fija"
75
+ "Fidelity points by fixed amount for whole cart","Puntos de fidelidad por cantidad fija para la totalidad del carro"
76
+ "Fidelity points by percentage of the original price","Puntos de fidelidad por porcentaje del precio original"
77
+ "Fidelity points:","Puntos de fidelidad:"
78
+ "filterLabel","Filtro de la columna"
79
+ "First name","Primer nombre:"
80
+ "First name:","Primer nombre:"
81
+ "gift","regalo"
82
+ "Gift exchange enabled","Intercambio de regalo habilitado"
83
+ "Gifts","Regalos"
84
+ "Godson","Ahijados"
85
+ "Godson ID","ID del Ahijado"
86
+ "Godson name","Nombre del ahijado"
87
+ "Guest first name","Primer nombre del invitado"
88
+ "Guest last name","Apellidos del invitado"
89
+ "Guest mail","Dirección de correo del invitado"
90
+ "Guest name","Nombre del invitado"
91
+ "IBAN","IBAN"
92
+ "ID","ID"
93
+ "Import Contacts","Importar contactos"
94
+ "Import selected contacts","Importar contactos seleccionados"
95
+ "Inactivity time before removal of the sponsorship link (days)","Tiempo de inactividad antes de retirar el enlace de patrocinio (dίas) "
96
+ "Invalid IBAN code ""%s""","El código IBAN ""%s"" es inválido"
97
+ "Invitation detail","Detalles de la invitación"
98
+ "Invitation does not exist","La invitación no existe"
99
+ "Invitation information","Información de la invitación"
100
+ "Invitation to %s","Invitar a %s"
101
+ "Invitation was successfully saved","La invitación se guardó correctamente"
102
+ "Invitations list","Lista de invitados"
103
+ "Last name","Apellidos"
104
+ "Last name:","Apellidos:"
105
+ "Last order date","Fecha del último pedido"
106
+ "Listing date","Fecha de inscripción"
107
+ "loading","carga"
108
+ "Login failed. Please check the email and password you have provided and try again later !","¡Identificación fallida. Por favor comprube la dirección de correo y contraseña facilitados e inténtelo más tarde!"
109
+ "Max invitations","Número máximo de invitaciones"
110
+ "Maximum amount permitted without company number","Cantidad máxima permitida sin número de compañίa"
111
+ "Maximum levels of sponsorship","Número máximo de niveles de patrocinio "
112
+ "Message","Mensaje"
113
+ "Module","Módulo"
114
+ "Number of sponsorships","Número de patrocinios"
115
+ "Once you will have points, you can change them into:","Una vez que tenga puntos, los puede cambiar en:"
116
+ "Open inviter providers","Proveedor de Open Inviter"
117
+ "Or add recipient manually.","O añada los destinatarios de forma manual."
118
+ "paginationFirst","Primera"
119
+ "paginationLast","última"
120
+ "paginationNext","Siguiente"
121
+ "paginationOf"," de "
122
+ "paginationPages","página(s)"
123
+ "paginationPrev","Anterior"
124
+ "Parrainage","Patrocinio"
125
+ "Password missing !","¡Falta la contraseña!"
126
+ "Please check the form fields.","Por favor, compruebe los campos del formulario."
127
+ "Please enter the full email, not just the username","Por favor introduzca la dirección de correo completa, no sólo el nombre de usuario"
128
+ "Please select changes","Por favor seleccione la moneda"
129
+ "Points","Puntos"
130
+ "Points exchanges list","Lista de puntos de intercambio"
131
+ "Points to exchange:","Puntos a cambiar"
132
+ "Principles of Sponsorship","Principios de Patrocinio"
133
+ "Provider detail","Detalles del proveedor"
134
+ "Provider missing !","¡Falta el proveedor!"
135
+ "Provider was successfully deleted","El proveedor fue borrado con éxito"
136
+ "Provider was successfully saved","El proveedor fue guardado con éxito"
137
+ "Ratio applied from level 2 to calculate the points of the sponsor (in percentage)","Ratio aplicada del nivel 2 al calcular los puntos del patrocinador (en porcentaje) "
138
+ "Recall","Recuperación"
139
+ "Recall %s %s","Recuperados %s de %s"
140
+ "Recipients:","Destinatarios:"
141
+ "Recovery date","Fecha de recuperación"
142
+ "Related ID","ID del Prescriptor"
143
+ "Related mail","Email del Prescriptor"
144
+ "Related name","Nombre del Prescriptor"
145
+ "searchLabel","Etiqueta de Búsqueda"
146
+ "Select recipients from your address book:","Seleccione destinatarios desde su libreta de direcciones:"
147
+ "Select recipients from your address book.","Seleccione destinatarios desde su libreta de direcciones."
148
+ "Select your provider and sign in:","Seleccione su proveedor y firme:"
149
+ "Social Networks","Redes Sociales"
150
+ "Solved","Resuelto"
151
+ "Special Rate","Ratio Especial"
152
+ "Sponsor","Sponsor"
153
+ "sponsor","Sponsor"
154
+ "Sponsor friends","Patrocinadores Amigos"
155
+ "Sponsor ID","ID del Sponsor"
156
+ "Sponsorship","Patrocinio"
157
+ "Sponsorship balance:","Balance del Patrocinio:"
158
+ "Sponsorship coupon","Cupón del patrocinio"
159
+ "Sponsorship date","Fecha del patrocinio"
160
+ "Sponsorship detail","Detalle del patrocinio"
161
+ "Sponsorship information","Información del patrocinio"
162
+ "Sponsorship invitation","Invitación de patrocinio"
163
+ "Sponsorship mail options","Opciones de correo del patrocinio"
164
+ "Sponsorship module activated","Módulo de patrocinio activado"
165
+ "Sponsorship options","Opciones de patrocinio"
166
+ "Sponsorship points","Puntos de patrocinio"
167
+ "Sponsorship points by fixed amount","Puntos de patrocinio por cantidad fija"
168
+ "Sponsorship points by fixed amount for whole cart","Puntos de patrocinio por cantidad fija para el total del carrito"
169
+ "Sponsorship points by percentage of the original price","Puntos de patrocinio por porcentaje del precio original"
170
+ "Sponsorship points:","Puntos de patrocinio:"
171
+ "Sponsorship was successfully saved","El patrocinio se ha guardado correctamente"
172
+ "Sponsorships list","Lista de patrocinios"
173
+ "Status","Estatus"
174
+ "Subject:","Asunto:"
175
+ "The change has been successfully recorded","El cambio ha sido registrado con éxito"
176
+ "The exchange of %s points in %s is disabled.","El cambio de %s puntos en %s está desactivado."
177
+ "The gifts exchange is not yet implemented.","El intercambio de regalos no se ha implementado aún."
178
+ "This change doesn't exist","Este cambio no existe."
179
+ "This sponsorship doesn't exist","El patrocinio no existe"
180
+ "Time to send it automatically (days)","Tiempo para enviarlo automáticamente (días)"
181
+ "Time validity invitations (days)","Tiempo de validez de las invitaciones (días)"
182
+ "To change more cash, you must specify a company number.","Para cambiar más efectivo debe especificar una compañía"
183
+ "To change your points into cash, you must indicate your IBAN.","Para convertir sus puntos en efectivo, debe especificar su código IBAN."
184
+ "Type","Tipo"
185
+ "Unable to find change to save","No se puede encontrar el cambio a guardar"
186
+ "Unable to find invitation to save","No se pudo encontrar la invitación a guardar"
187
+ "Unable to find sponsorship to save","No se puede encontrar el patrocinio a guardar"
188
+ "Unable to get contacts !","¡No se pudieron obtener los contactos!"
189
+ "Update status","Actualizar el estatus"
190
+ "Use of your fidelity points","Uso de sus puntos de fidelidad"
191
+ "Use of your sponsorship points","Uso de sus puntos de patrocinio"
192
+ "Validate","Validar"
193
+ "Value","Valor"
194
+ "Voucher exchange enabled","Cambio de vales habilitado"
195
+ "Voucher exchange mail options","Opciones de vales de intecambio de correo"
196
+ "Vouchers","Vales Descuento"
197
+ "Vouchers:","Vales Descuento:"
198
+ "Waiting","Espera"
199
+ "Winning","Puntos ganados"
200
+ "You do not have active godson.","No tiene ahijados activos."
201
+ "You do not have as many points.","No tiene tanto puntos."
202
+ "You do not have yet send invit.","No tiene aún envío de invitaciones."
203
+ "You have %d points.","Dispone de %d puntos."
204
+ "You must already have purchased to sponsor.","Ya debe haber comprado al patrocinador."
205
+ "You should visit this website. It offers interesting products.","Debería visitar este sitio web. Ofrece productos interesantes."
206
+ "Your email has been successfully sent.","Su correo ha sido enviado con éxito."
207
+ "Your godsons","Sus ahijados"
208
+ "Your invitations","Sus invitados"
209
+ "Your lastest orders","Su último pedido"
210
+ "Your login:","Su identificación:"
211
+ "Your mail has not been sent, please try again later.","Su correo no ha podido ser enviado. Por favor, inténtelo más tarde."
212
+ "Your message","Su mensaje"
213
+ "Your message will be preceded by:","Su mensaje irá precedido por:"
214
+ "Your message will ends as follows:","Su mensaje finalizará como sigue:"
215
+ "Your message:","Su mensaje:"
216
+ "Your points exchanges:","Sus intercambios de puntos:"
217
+ "Your request has been submitted, you will soon receive an email confirmation.","Su solicitud ha sido enviada. En breve recibirá un correo de confirmación."
app/locale/es_ES/template/email/sponsorship_coupon.html ADDED
@@ -0,0 +1,76 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {* This is a comment block
2
+
3
+ @category Auguria
4
+ @package Auguria_Sponsorship
5
+ @author Auguria
6
+ @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
7
+
8
+ Available vars in sponsorship template:
9
+ subject
10
+ sender_id
11
+ sender_name
12
+ sender_email
13
+ sender_name
14
+ sender_email
15
+ recipient_firstname
16
+ recipient_lastname
17
+ discount_amount
18
+ coupon_code
19
+
20
+ *}<!--@subject {{var data.subject}} @-->
21
+
22
+ Estimado {{var data.recipient_firstname}} {{var data.recipient_lastname}},
23
+
24
+ Sus bonos de intercambio de puntos han sido registrados con éxito.
25
+
26
+ Ahora puede recibir su descuento por valor de {{var data.discount_amount}} euros, indicando el siguiente código de descuento:
27
+
28
+ {{var data.coupon_code}}
29
+
30
+ {{store url=""}}
31
+
32
+ --BOUNDARY_TEXT_OF_CHOICE_FOR_AUGURIA_SPONSORSHIP
33
+
34
+ <style type="text/css">
35
+ body,td { color:#2f2f2f; font:11px/1.35em Verdana, Arial, Helvetica, sans-serif; }
36
+ </style>
37
+
38
+ <div style="font:11px/1.35em Verdana, Arial, Helvetica, sans-serif;">
39
+ <table cellspacing="0" cellpadding="0" border="0" width="98%" style="margin-top:10px; font:11px/1.35em Verdana, Arial, Helvetica, sans-serif; margin-bottom:10px;">
40
+ <tr>
41
+ <td align="center" valign="top">
42
+ <!-- [ header starts here] -->
43
+ <table cellspacing="0" cellpadding="0" border="0" width="650">
44
+ <tr>
45
+ <td valign="top">
46
+ <a href="{{store url=""}}">
47
+ <img src="{{skin url="images/logo_email.gif" _area='frontend'}}" alt="{{var data.store_name}}" style="margin-bottom:10px;" border="0"/>
48
+ </a>
49
+ </td>
50
+ </tr>
51
+ </table>
52
+
53
+ </td>
54
+ </tr>
55
+ <tr>
56
+ <td align="center" valign="top">
57
+ <!-- [ middle starts here] -->
58
+ <table cellspacing="0" cellpadding="0" border="0" width="650">
59
+ <tr>
60
+ <td valign="top">
61
+ <p><strong>Estimado {{var data.recipient_firstname}} {{var data.recipient_lastname}}</strong>,</p>
62
+ <p>Sus bonos de intercambio de puntos han sido registrados con éxito.</p>
63
+ <p>Ahora puede recibir su descuento por valor de <strong>{{var data.discount_amount}} euros</strong>, indicando el siguiente código de descuento:</p>
64
+ <h1 align="center">{{var data.coupon_code}}</h1>
65
+ </td>
66
+ </tr>
67
+ <tr>
68
+ <td valign="top">
69
+ <a href="{{store url=""}}">{{var data.store_name}}</a>
70
+ </td>
71
+ </tr>
72
+ </table>
73
+ </td>
74
+ </tr>
75
+ </table>
76
+ </div>
app/locale/es_ES/template/email/sponsorship_invitation.html ADDED
@@ -0,0 +1,60 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {* This is a comment block
2
+
3
+ @category Auguria
4
+ @package Auguria_Sponsorship
5
+ @author Auguria
6
+ @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
7
+
8
+ Available vars in sponsorship template:
9
+ data.sender_name
10
+ data.sender_email
11
+ data.subject
12
+ data.html_message
13
+ data.text_message
14
+ data.html_footer
15
+ data.text_footer
16
+ data.recipient_email
17
+ data.sponsorship_url
18
+
19
+ *}<!--@subject {{var data.subject}} @-->
20
+ {{var data.text_message}}
21
+ {{var data.text_footer}}
22
+
23
+ --BOUNDARY_TEXT_OF_CHOICE_FOR_AUGURIA_SPONSORSHIP
24
+
25
+ <style type="text/css">
26
+ body,td { color:#2f2f2f; font:11px/1.35em Verdana, Arial, Helvetica, sans-serif; }
27
+ </style>
28
+
29
+ <div style="font:11px/1.35em Verdana, Arial, Helvetica, sans-serif;">
30
+ <table cellspacing="0" cellpadding="0" border="0" width="98%" style="margin-top:10px; font:11px/1.35em Verdana, Arial, Helvetica, sans-serif; margin-bottom:10px;">
31
+ <tr>
32
+ <td align="center" valign="top">
33
+ <!-- [ header starts here] -->
34
+ <table cellspacing="0" cellpadding="0" border="0" width="650">
35
+ <tr>
36
+ <td valign="top">
37
+ <a href="{{var data.sponsorship_url}}">
38
+ <img src="{{skin url="images/logo_email.gif" _area='frontend'}}" alt="{{var order.getStoreGroupName()}}" style="margin-bottom:10px;" border="0"/>
39
+ </a>
40
+ </td>
41
+ </tr>
42
+ </table>
43
+
44
+ </td>
45
+ </tr>
46
+ <tr>
47
+ <td align="center" valign="top">
48
+ <!-- [ middle starts here] -->
49
+ <table cellspacing="0" cellpadding="0" border="0" width="650">
50
+ <tr>
51
+ <td valign="top">
52
+ <pre>{{var data.html_message}}</pre>
53
+ <pre>{{var data.html_footer}}</pre>
54
+ </td>
55
+ </tr>
56
+ </table>
57
+ </td>
58
+ </tr>
59
+ </table>
60
+ </div>
app/locale/fr_FR/Auguria_Sponsorship.csv CHANGED
@@ -1,4 +1,5 @@
1
  "Action","Action"
 
2
  "'%s' is not a valid number.","'%s' n'est pas un nombre valide."
3
  "'%s' is not an integer.","'%s' n'est pas un entier."
4
  "'%s' is not greater than 0.","'%s' n'est pas supérieur à 0."
@@ -18,6 +19,9 @@
18
  "Address book provider:","Fournisseur de carnet d'adresse :"
19
  "Allow to send invitations to customers who have never ordered","Autoriser l'envoie d'invitations aux clients n'ayant jamais commandé"
20
  "Allows customers to import addressbook/contacts from different email providers like Yahoo, Gmail, Hotmail, Live etc. using different CMS software like Drupal, Joomla etc. or forum software like PHPBB, SMF etc. Learn more on <a href='http://openinviter.com'>openinviter.com</a>","Permet aux clients d'importer leur carnet d'adresse depuis plusieurs fournisseurs comme Yahoo, Gmail, Hotmail, Live etc. Plus de sétails sur <a href='http://openinviter.com'>openinviter.com</a>"
 
 
 
21
  "An error occurred while saving your request.","Une erreur est survenue lors de l'enregistrement de votre demande."
22
  "An error occurred while sending mail.","Une erreur est survenue lors de l'envoi du mail."
23
  "An error occurred, the mail to %s could not be delivred.","Une erreur est survenue, le mail destiné à %s n'a pas pu être délivré."
@@ -32,12 +36,14 @@
32
  "cash","cash"
33
  "Cash exchange enabled","Échange en cash activé"
34
  "Change information","Information sur l'échange"
35
- "Change your points into:","Changez vos points en :"
36
  "Check or uncheck all","Tout sélectionner ou tout de-sélectionner"
37
  "Choose your provider","Choisissez votre fournisseur"
38
  "Conversion rate of points in currency","Taux de conversion des points en monnaie"
39
  "coupon","bon de réduction"
40
  "Creation date","Date de création"
 
 
41
  "Customer","Client"
42
  "Customer ID","ID Client"
43
  "Customer name","Nom client"
1
  "Action","Action"
2
+ ":You will receive an email with the discount code you can use on your next order.",": Vous recevrez un mail avec le code de réduction que vous pourrez utiliser lors de votre prochaine commande."
3
  "'%s' is not a valid number.","'%s' n'est pas un nombre valide."
4
  "'%s' is not an integer.","'%s' n'est pas un entier."
5
  "'%s' is not greater than 0.","'%s' n'est pas supérieur à 0."
19
  "Address book provider:","Fournisseur de carnet d'adresse :"
20
  "Allow to send invitations to customers who have never ordered","Autoriser l'envoie d'invitations aux clients n'ayant jamais commandé"
21
  "Allows customers to import addressbook/contacts from different email providers like Yahoo, Gmail, Hotmail, Live etc. using different CMS software like Drupal, Joomla etc. or forum software like PHPBB, SMF etc. Learn more on <a href='http://openinviter.com'>openinviter.com</a>","Permet aux clients d'importer leur carnet d'adresse depuis plusieurs fournisseurs comme Yahoo, Gmail, Hotmail, Live etc. Plus de sétails sur <a href='http://openinviter.com'>openinviter.com</a>"
22
+ "Amount of winning points for first order","Montant des points gagnés pour une première commande"
23
+ "Amount of winning points for the first godson order","Montant des points gagnés lors de la première commande d'un filleul"
24
+ "Amount of winning points when subscribe to newsletter on account creation","Montant des points gagnés si le client s'abonne à la newletter lors de son inscription"
25
  "An error occurred while saving your request.","Une erreur est survenue lors de l'enregistrement de votre demande."
26
  "An error occurred while sending mail.","Une erreur est survenue lors de l'envoi du mail."
27
  "An error occurred, the mail to %s could not be delivred.","Une erreur est survenue, le mail destiné à %s n'a pas pu être délivré."
36
  "cash","cash"
37
  "Cash exchange enabled","Échange en cash activé"
38
  "Change information","Information sur l'échange"
39
+ "Change your points into:","Cliquez sur un des liens suivants pour changer vos points :"
40
  "Check or uncheck all","Tout sélectionner ou tout de-sélectionner"
41
  "Choose your provider","Choisissez votre fournisseur"
42
  "Conversion rate of points in currency","Taux de conversion des points en monnaie"
43
  "coupon","bon de réduction"
44
  "Creation date","Date de création"
45
+ "Credit fidelity points","Crédit points de fidélité"
46
+ "Credit sponsor points","Crédit points de parrainage"
47
  "Customer","Client"
48
  "Customer ID","ID Client"
49
  "Customer name","Nom client"
app/locale/fr_FR/template/email/sponsorship_coupon.html CHANGED
@@ -59,7 +59,7 @@ body,td { color:#2f2f2f; font:11px/1.35em Verdana, Arial, Helvetica, sans-serif;
59
  <tr>
60
  <td valign="top">
61
  <p><strong>Bonjour {{var data.recipient_firstname}} {{var data.recipient_lastname}}</strong>,</p>
62
- <p>Votre échange de points en bon de réduction a bien été enregistré.</p>
63
  <p>Vous pouvez dès maintenant bénéficier de votre bon de réduction d'une valeur de <strong>{{var data.discount_amount}} euros</strong>, en indiquant le code de remises suivant :</p>
64
  <h1 align="center">{{var data.coupon_code}}</h1>
65
  </td>
59
  <tr>
60
  <td valign="top">
61
  <p><strong>Bonjour {{var data.recipient_firstname}} {{var data.recipient_lastname}}</strong>,</p>
62
+ <p>Votre échange de points en bon de réduction a bien été enregistré.</p>
63
  <p>Vous pouvez dès maintenant bénéficier de votre bon de réduction d'une valeur de <strong>{{var data.discount_amount}} euros</strong>, en indiquant le code de remises suivant :</p>
64
  <h1 align="center">{{var data.coupon_code}}</h1>
65
  </td>
package.xml CHANGED
@@ -1,15 +1,15 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Auguria_Sponsorship</name>
4
- <version>1.0.7</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">OSL 3.0</license>
7
  <channel>community</channel>
8
  <extends/>
9
- <summary>This module allows customers to earn fidelity and sponsorship points.
10
- Customers can invit friends on your site and when their friends buy products, they earn sponsorship points. If a godchild sponsor a person, the sponsor will earn a percentage too.
11
- When customers buy, they can win fidelity points.
12
- These points can then be exchanged against cash, discounts or gifts (not yet implemented).</summary>
13
  <description>The module consists of :
14
  - A form to send invitations: when an invitation is sent, the guest mail is registered , and the customer id too.
15
  - A system of affiliation: The link sent through invitations refer to a controller that will create a cookie and a session to identify a person invited. We can equally put such links on third party sites.
@@ -26,9 +26,9 @@ Once installed, you must:
26
  - If you enable automatic sponsorship recall, activate magento cron</description>
27
  <notes>If you have ideas for improvements or find bugs, please send them to Franck Charpentier at www.auguria.net, with Auguria LastReviews as part of the subject line.</notes>
28
  <authors><author><name>Auguria</name><user>auto-converted</user><email>magento@auguria.net</email></author></authors>
29
- <date>2010-11-16</date>
30
- <time>08:44:43</time>
31
- <contents><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="sponsorship.xml" hash="934da279981ddb250e116b956a262c0c"/></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="sponsorship.xml" hash="8d7ead600805bdd2cc66a0e67a26dcf4"/></dir><dir name="template"><dir name="sponsorship"><dir name="customer"><dir name="account"><dir name="dashboard"><file name="fidelity_points.phtml" hash="afbada11c6c7819daa7a74c0ef186a1b"/><file name="sponsor_points.phtml" hash="a19f3594bfe1b4491bc8f906e08f86bf"/></dir><file name="dashboard.phtml" hash="a42e17c3f2458fdeb19a59c97e88a464"/><file name="fidelitypointsdetail.phtml" hash="e7447e77dbe3aba646fcd153a22c9f83"/><file name="sponsorpointsdetail.phtml" hash="2c67d213c7206e851f756f90c579dfc1"/></dir><dir name="form"><dir name="pointschange"><file name="pointschange_cash.phtml" hash="58adf546a6e8aa93b340a2d1aab50e73"/><file name="pointschange_coupon.phtml" hash="0190f17418f5f5b3ffa128e09ffa375e"/><file name="pointschange_gift.phtml" hash="29a244c931252894b98e1a9bf1c40fc4"/></dir><file name="boost.phtml" hash="cf19f616a64094c4ac23a635f83a67d7"/><file name="edit.phtml" hash="5f92457016a32b6277256b0bb19065b9"/><file name="pointschange.phtml" hash="98fced0f1ac113b79e14521fea151afc"/><file name="register.phtml" hash="167d982e147db4195895a5419dd64329"/></dir><dir name="widget"><file name="name.phtml" hash="bfb8c2e90a4e5af55a6479cc122d67b1"/><file name="virement.phtml" hash="74b9c05d0242aa06b6cc35a9abc23751"/></dir></dir><file name="openinviter.phtml" hash="b239707ebefe243d1b072a59f25b0a0b"/><file name="openinviterimport.phtml" hash="8e468750660c4b2556f4f1e1b50bfafb"/><file name="sponsorship.phtml" hash="a39616946d2f49fa0e5b55a74415628f"/></dir></dir></dir></dir></dir></target><target name="mage"><dir name="app"><dir name="etc"><dir name="modules"><file name="Auguria_Sponsorship.xml" hash="2ace21d88c17b2636514543e866169eb"/></dir></dir></dir><dir name="js"><dir name="tableorderer"><file name="table_orderer.js" hash="f23c21e5031d7218f83c9117cf7442eb"/></dir></dir></target><target name="magecommunity"><dir name="Auguria"><dir name="Sponsorship"><dir name="Block"><dir name="Adminhtml"><dir name="Change"><dir name="Edit"><dir name="Tab"><file name="Form.php" hash="cd94427577e45107683ea305a557f9d8"/></dir><file name="Form.php" hash="ae7412b583874b8fffc05cc3897f1a2b"/><file name="Tabs.php" hash="14027188a77ed427a54211d61471c962"/></dir><file name="Edit.php" hash="5c266273137c23f763d39d93f5ef82b4"/><file name="Grid.php" hash="9962a69732ae93157eb99ff663608203"/></dir><dir name="Link"><dir name="Edit"><dir name="Tab"><file name="Form.php" hash="98a2a13987cb165ee5233dcef0927daa"/></dir><file name="Form.php" hash="e6e087ae96b24d4edbe9e1f578e7a55a"/><file name="Tabs.php" hash="7d67a25094cf51ced551a8b3e21155c1"/></dir><file name="Edit.php" hash="bb82a0a9cd963648d7e6e34c616a0122"/><file name="Grid.php" hash="a141a2ecd313131a3282885b7781268c"/></dir><dir name="Openinviter"><dir name="Edit"><dir name="Tab"><file name="Form.php" hash="195714b736feb365b208346ab8323385"/></dir><file name="Form.php" hash="b4bdc64549563f0117f65c66f97d0fb8"/><file name="Tabs.php" hash="41a6ef79001601dacba231c9eefd4749"/></dir><file name="Edit.php" hash="2297909cf7059abd6b15080abe9dc586"/><file name="Grid.php" hash="d7c4af65017cbcb83831af451b1488ce"/></dir><dir name="Sponsorship"><dir name="Edit"><dir name="Tab"><file name="Form.php" hash="686b9a9a14d57e0f2e7edcf3d4e0416a"/></dir><file name="Form.php" hash="a3a2352db1c72663af0caa289287a9d2"/><file name="Tabs.php" hash="257863f6b317e37110dacc86b783565b"/></dir><file name="Edit.php" hash="40ea8077f12545878ddc0cd0ad2f8cad"/><file name="Grid.php" hash="83a98d5005f4b89dfa275ddea3355c16"/></dir><dir name="Widget"><dir name="Grid"><file name="Renderer.php" hash="35c8a336e1a0e2dcc8d48b558cee9253"/></dir></dir><file name="Change.php" hash="bec41dc1406063e264b15c9755cf3a5c"/><file name="Link.php" hash="922a5716b419d7becb0150cae3bda3de"/><file name="Openinviter.php" hash="291020a06d499b7b12e37e53e1963a08"/><file name="Sponsorship.php" hash="634e37981a47519ba1063be166fc511f"/></dir><dir name="Customer"><dir name="Account"><file name="PointsDetail.php" hash="2975bcbfe44640ebf90e6417941f0e12"/></dir><dir name="Form"><file name="Boost.php" hash="33cd49ab1ceed2816feb1d45b1c7a69b"/><file name="PointsChange.php" hash="92a71fe4f081b6c3b85cc645419fac04"/></dir><dir name="Widget"><file name="Name.php" hash="3c82b2d67f219ae56ac37526f72268fe"/><file name="Virement.php" hash="ba25badce7295811fe5deeafa284c114"/></dir></dir><dir name="Promo"><dir name="Catalog"><dir name="Edit"><dir name="Tab"><file name="Actions.php" hash="f5926196fd291cb45c13b5a8e1c018b6"/></dir></dir></dir><dir name="Quote"><dir name="Edit"><dir name="Tab"><file name="Actions.php" hash="4ff4de9b5e4d5200111d602625f91362"/></dir></dir></dir></dir><file name="Openinviter.php" hash="3051e44a791ccab457a37cef01357bd5"/><file name="Sponsorship.php" hash="40c257095b22fe117401af276b1f4bd7"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="ChangeController.php" hash="73c1db83413cdf077562f8fb8d4bd8ec"/><file name="LinkController.php" hash="8f6c0efd94f22c15ffd2dd0f287a0e5e"/><file name="OpeninviterController.php" hash="82c2500286cb627c56d8655b79380d77"/><file name="SponsorshipController.php" hash="fff66a866f773ed8f6d3708c9e0d644f"/></dir><dir name="Customer"><file name="AccountController.php" hash="2986c03548b6ff85c2ba016dea953598"/></dir><file name="BoostController.php" hash="c23cca5dfd34c8975f785e7973aa4d79"/><file name="FidelitypointsController.php" hash="2da584308b4c6b36978acc1b3674a43b"/><file name="IndexController.php" hash="e394a4d3f448e40f5461c16c80acefbf"/><file name="OpeninviterController.php" hash="f7268aa63f3248a4c1c4a61b26990d87"/><file name="SponsorController.php" hash="b81147d898f8903d5167ab0eed14a8ed"/><file name="SponsorpointsController.php" hash="a75460b9177c6d7dc602bad6431f1dde"/></dir><dir name="etc"><file name="config.xml" hash="9377517f9b7e64c52c79d690af6ee82b"/><file name="system.xml" hash="169c05a57f8aa8019435e9b425e0d5aa"/></dir><dir name="Helper"><file name="Data.php" hash="57de49f9860042fd9c9f8b85b6884b8a"/><file name="Mail.php" hash="9dde8399b8afb7e45347c1b7bc667c3a"/></dir><dir name="Lib"><dir name="OpenInviter"><dir name="conf"><file name="abv.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="aol.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="apropo.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="atlas.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="aussiemail.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="azet.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="badoo.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="bebo.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="bigstring.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="bookcrossing.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="bordermail.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="brazencareerist.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="canoe.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="care2.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="clevergo.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="cyworld.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="doramail.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="eons.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="evite.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="facebook.conf" hash="12cfb187449596c39774c4ac193295cc"/><file name="faces.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="famiva.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="fastmail.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="fdcareer.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="flickr.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="flingr.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="flixster.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="fm5.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="freemail.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="friendfeed.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="friendster.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="gawab.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="gmail.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="gmx_net.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="graffiti.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="hi5.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="hotmail.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="hushmail.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="hyves.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="inbox.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="india.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="indiatimes.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="inet.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="interia.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="katamail.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="kids.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="kincafe.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="konnects.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="koolro.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="lastfm.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="libero.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="linkedin.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="livejournal.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="lovento.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="lycos.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="mail2world.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="mail_com.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="mail_in.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="mail_ru.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="meinvz.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="meta.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="mevio.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="motortopia.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="msn.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="multiply.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="mycatspace.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="mydogspace.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="mynet.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="myspace.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="netaddress.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="netlog.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="ning.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="nz11.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="o2.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="operamail.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="orkut.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="perfspot.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="plaxo.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="plazes.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="plurk.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="pochta.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="popstarmail.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="rambler.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="rediff.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="sapo.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="skyrock.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="tagged.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="techemail.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="terra.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="twitter.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="uk2.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="vimeo.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="virgilio.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="vkontakte.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="walla.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="web_de.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="wpl.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="xanga.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="xing.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="xuqa.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="yahoo.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="yandex.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="youtube.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="zapak.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="_hosted.conf" hash="1d09309103e660729b492433acda9822"/></dir><dir name="images"><file name="ers.gif" hash="cccdfd4ed0795b767d2a01f531781c10"/><file name="oks.gif" hash="6b4b170c9f10a0fa4b25307dd8f47e5b"/></dir><dir name="plugins"><file name="abv.plg.php" hash="1685755eae909c468055b9b36c915822"/><file name="aol.plg.php" hash="dd3522033c2cafeb62fd0beed5949bcf"/><file name="apropo.plg.php" hash="4426f976c1953383cf9d1f892aa9576e"/><file name="atlas.plg.php" hash="0b8e4237970ae54ff20187f5e861f972"/><file name="aussiemail.plg.php" hash="d40188b33455b3fd2e88cbde25f61709"/><file name="azet.plg.php" hash="e4a7c19450ca1ad84783a06ae3b1d61f"/><file name="badoo.plg.php" hash="b1d4863a173a80fc9d77331f1e60f2df"/><file name="bebo.plg.php" hash="2d7db898c660380ee74963667bec6bae"/><file name="bigstring.plg.php" hash="7de7a5516a8f0c71580970d8da4121eb"/><file name="bookcrossing.plg.php" hash="212a53a3a95659c56e15d6848549e25e"/><file name="bordermail.plg.php" hash="30190fa3da58d63ddd7e30e6ab0190dc"/><file name="brazencareerist.plg.php" hash="c68f39b6d7a07550abd63ed044ad85c2"/><file name="canoe.plg.php" hash="7737d89b163689cb793f0f37f6028efb"/><file name="care2.plg.php" hash="c066e81973194cca90036c37c7740937"/><file name="clevergo.plg.php" hash="9bd12fea0eb7f60043bcdca9116cb1bc"/><file name="cyworld.plg.php" hash="588dfdddcc2bc9ab2ff26c4616e0a42c"/><file name="doramail.plg.php" hash="81037085958f90a05111ad030c5a72f8"/><file name="eons.plg.php" hash="35009d6e25ae5584c554808b50145a19"/><file name="evite.plg.php" hash="d6c8acf7c24c2848eccedb269928d6eb"/><file name="facebook.plg.php" hash="6a1cfdc0dfc76b3dc3781aa2327ee833"/><file name="faces.plg.php" hash="d0affdf4e73ff6134acfaae5fda29323"/><file name="famiva.plg.php" hash="eee1c0a9a6d645baf014245ca2e9c3e9"/><file name="fastmail.plg.php" hash="da86fea25210ed40258ae2a107dcfe8f"/><file name="fdcareer.plg.php" hash="aad3d525fe09269de056f8ec03e43104"/><file name="flickr.plg.php" hash="055d1e64f116113379e3192b23dc84fc"/><file name="flingr.plg.php" hash="c2b415851babadb8048609874b411979"/><file name="flixster.plg.php" hash="773fad1c2c1775fcb74fb33f51d1fa24"/><file name="fm5.plg.php" hash="0576df91534edaab3d6b333d1968781a"/><file name="freemail.plg.php" hash="142951e9c20ce4447f44c6db7e5cc2e8"/><file name="friendfeed.plg.php" hash="399c987766110735fdd301979997fe48"/><file name="friendster.plg.php" hash="8b3402876a73bf91a84d3a6d8dbb1951"/><file name="gawab.plg.php" hash="c4cb42d893a99b370d9597f20da5c01e"/><file name="gmail.plg.php" hash="83d92f7f75e048210aec2fdecdbd67e0"/><file name="gmx_net.plg.php" hash="218b73370a1367455aeee09695bc4e2a"/><file name="graffiti.plg.php" hash="36f6a6f03fceb9b0e008c1a281a17eb2"/><file name="hi5.plg.php" hash="ba133ae4e865c10f6ce3ddc738751374"/><file name="hotmail.plg.php" hash="ef3241a0a43020412162d8f6dd9dd206"/><file name="hushmail.plg.php" hash="d3f9f339ac03c8aa2426f7a2fe4f2606"/><file name="hyves.plg.php" hash="4dca8f35b17070c42bd16fd86352baf3"/><file name="inbox.plg.php" hash="34066ac6458b6506921e11dde302e3c2"/><file name="india.plg.php" hash="cdd4e86f5b21122b2ebf898eb78b0311"/><file name="indiatimes.plg.php" hash="bbbda190c92579f469f0b4712ba9806f"/><file name="inet.plg.php" hash="6bc3da45b492ba41012b25e501c05273"/><file name="interia.plg.php" hash="3fb3cb41913d12228f162ac32539a848"/><file name="katamail.plg.php" hash="2c2c85f1cab23f236295e5340da10511"/><file name="kids.plg.php" hash="5fae2d825799b0793e2b131162ec8e07"/><file name="kincafe.plg.php" hash="39f0d662293f3db3bd9b0bb9e57b8e27"/><file name="konnects.plg.php" hash="0fd4bc3f8361fb7e5f04d277b4f7f121"/><file name="koolro.plg.php" hash="ebc1936657a99eb8b96ee178d9b7e15c"/><file name="lastfm.plg.php" hash="a293d4bde8a36b1868ddc432e1f201e6"/><file name="libero.plg.php" hash="29cbf372f39d77fd0b62d0777ded4317"/><file name="linkedin.plg.php" hash="a705475d12bb2458d9bad14497211a14"/><file name="livejournal.plg.php" hash="c9c4bd30963d28eee5038841a7d7c788"/><file name="lovento.plg.php" hash="e26c7fe712efdd69fe3788b02ebf514b"/><file name="lycos.plg.php" hash="41a133d41ef4627b353b0f33149629c0"/><file name="mail2world.plg.php" hash="5737b208425e9d03988303d1c20baac6"/><file name="mail_com.plg.php" hash="5d2c20c61d5ba58c4e4c4fc6e162cb20"/><file name="mail_in.plg.php" hash="bf443e42022a368819bcbb788baaa095"/><file name="mail_ru.plg.php" hash="64b7d2daef963b4fd7e72dd969a04cd2"/><file name="meinvz.plg.php" hash="409380a6ca5c70f8f7ae998d37195115"/><file name="meta.plg.php" hash="17bd2e282a8509a14c2d440ea02d8961"/><file name="mevio.plg.php" hash="d175cd50dc07d749e7118a3a3b836800"/><file name="motortopia.plg.php" hash="507c050bb6e0cc73884c427d4745c7a0"/><file name="msn.plg.php" hash="2a205b0556aa7b8908dca3b15017db4f"/><file name="multiply.plg.php" hash="22e5d241084c259a79330eebff508d95"/><file name="mycatspace.plg.php" hash="1282b9619ddfcba5d924c0e31ea74cc7"/><file name="mydogspace.plg.php" hash="be44672096adbe4e2532d0a9df027b5f"/><file name="mynet.plg.php" hash="a2a38a688707957e216d3868c8b1741e"/><file name="myspace.plg.php" hash="bfcabb115825937a9ed4f9745f52ca7e"/><file name="netaddress.plg.php" hash="8e2ccf82123f831b2616c8d3a80f579f"/><file name="netlog.plg.php" hash="246411cc237ef587d31003c03c61b05b"/><file name="ning.plg.php" hash="e59cb73b203a22978ead363c49e48d3d"/><file name="nz11.plg.php" hash="b94995c177198c061b628ddc82d4c7fc"/><file name="o2.plg.php" hash="8e44c5027c493fff7be428ff034f0466"/><file name="operamail.plg.php" hash="5e3a90f0be46b03bcde54eebd76371c9"/><file name="orkut.plg.php" hash="1a291548a82889b36f976bd091260aa5"/><file name="perfspot.plg.php" hash="9d4a9b33f8cf809e5c73bfc517af53db"/><file name="plaxo.plg.php" hash="d640845713388d7c87a206b3f51060f2"/><file name="plazes.plg.php" hash="f6d71432926c126d7f165e6c83a16854"/><file name="plurk.plg.php" hash="e780f5cdd31029cc1b153a1c5b14a965"/><file name="pochta.plg.php" hash="b5732832c05bf982a5950fa32ee4d62a"/><file name="popstarmail.plg.php" hash="a36517a17fa2a461ab890861a4c452fd"/><file name="rambler.plg.php" hash="148cfdfa5b4e5eb2479692dd9f1533a7"/><file name="rediff.plg.php" hash="5679b17973310ecf1ba8b097d3acffaa"/><file name="sapo.plg.php" hash="2bd76d540c454da5f014eba59074e835"/><file name="skyrock.plg.php" hash="1d6113c0c726f48c250160bcc7826aa2"/><file name="tagged.plg.php" hash="1a88811dfd57937db6aece3026f7f99a"/><file name="techemail.plg.php" hash="9894baf3c22e835dbcf62796327d9f99"/><file name="terra.plg.php" hash="094ae4ab8e63dd0f075a860c9aba2094"/><file name="twitter.plg.php" hash="a385725eb41c3cc003c52429295d1355"/><file name="uk2.plg.php" hash="ca5238d090e6a65709302a149caf5ffb"/><file name="vimeo.plg.php" hash="de5ab46f0cc5919b242c5b200f0ef724"/><file name="virgilio.plg.php" hash="38df3729142bd2b40792b7a1793446b7"/><file name="vkontakte.plg.php" hash="7db9b7a03e8f4ee2d2d7f5192ec18912"/><file name="walla.plg.php" hash="5340dda0d54849d2e313ab97015db215"/><file name="web_de.plg.php" hash="d3ed9a0c556f08bc5c67f978c7be4727"/><file name="wpl.plg.php" hash="b151407c39c360f49ffb9ca9fd73b32b"/><file name="xanga.plg.php" hash="89b5c2c3db98e735e4d1f19fb1c81786"/><file name="xing.plg.php" hash="4f89f01bb8bcbc856441cb6ecb2fbe60"/><file name="xuqa.plg.php" hash="1219e94f6ef0919025b2c93741e55fbd"/><file name="yahoo.plg.php" hash="f2953a803d0d61ffce2c9136d1706758"/><file name="yandex.plg.php" hash="2c211df8b0511fb8c832a00976f2cee1"/><file name="youtube.plg.php" hash="fc05c436e6c2dd1c6c8fa336e7e893c5"/><file name="zapak.plg.php" hash="2274bd725d3bda8df0ae9d45d3ce1470"/><file name="_base.php" hash="79459bef6fcea96f6a7d4a584add9052"/><file name="_hosted.plg.php" hash="69514e56e1833df16884b6762bc620ce"/></dir><file name="autoupdate.php" hash="df781d645e37271f23432bb82b3360a2"/><file name="config.php" hash="6c16534afd6e50dfda0c5be417bd6fe7"/><file name="LICENSE.txt" hash="277c3d400c7488e54746141297a952cb"/><file name="notifier.php" hash="88e3be687de995aae52a8ce248c49bce"/><file name="openinviter.php" hash="d2c0237f86cd7c21dadc2c441e73abb1"/><file name="POLICY.txt" hash="6262372bc84e172c7fd89d9ac61f9794"/><file name="stats.php" hash="5af8362ab3e9f89f5e8560b2623f767a"/></dir><file name="Html2Text.php" hash="4bd5cf3bd59121ffa9d15b9a60a56ca4"/></dir><dir name="Model"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Backend"><dir name="Sponsorship"><file name="Entier.php" hash="cb45db31cab4b797103d686e03404d6d"/><file name="Float.php" hash="35b76ecdc9065ae9aef1acdee66ab57c"/><file name="Openinviter.php" hash="b4ac237d528a505bb389f9b29d2ec486"/></dir></dir></dir></dir></dir><dir name="Core"><dir name="Email"><file name="Template.php" hash="5ad7985013fff5f28cd76bbec0a71c22"/></dir></dir><dir name="Customer"><file name="Customer.php" hash="1ee0fbe7c2ce96fac9f7dfc97e179a9e"/></dir><dir name="Mysql4"><dir name="CatalogFidelityPoint"><file name="Collection.php" hash="b151b96d8370ea1fe9e309559fb04573"/></dir><dir name="CatalogSponsorPoint"><file name="Collection.php" hash="a56b2950a04ae446dcf82ad4bdfadb07"/></dir><dir name="Change"><file name="Collection.php" hash="99a67418cc7b573f285c04a5d7f6020d"/></dir><dir name="FidelityLog"><file name="Collection.php" hash="7230b303a336da8167709168410c0531"/></dir><dir name="Sponsorlog"><file name="Collection.php" hash="8efa2fb23ec7a6ad2373395ff4739f1e"/></dir><dir name="Sponsorship"><file name="Collection.php" hash="bea288d9bdc6faee88795895eb5bd6ee"/></dir><dir name="Sponsorshipopeninviter"><file name="Collection.php" hash="02d068c627dcfde82019855510d33c1f"/></dir><file name="CatalogFidelityPoint.php" hash="ab4402569102622be8264d135768afbc"/><file name="CatalogSponsorPoint.php" hash="f34d98e76da49afe1e2049dcb3c73626"/><file name="Change.php" hash="fcc6ad58aae6b4051fa997c03b5b5756"/><file name="Fidelitylog.php" hash="47a37a5374c82d3428a6bcc301316ce8"/><file name="Rule.php" hash="2ee2d8879d6ac0be3432e1e5334d77cf"/><file name="Sponsorlog.php" hash="97bde1eef9156b5a20f5f2f92a6fee03"/><file name="Sponsorship.php" hash="2c6d63261112e53a9c442ea3568e2e32"/><file name="Sponsorshipopeninviter.php" hash="ad84d61baa3a105b6f9ff469ca4ba08a"/></dir><dir name="SocialBookmarking"><file name="Urls.php" hash="8507b7302d5aa76c9b6bc8e1e92e0598"/></dir><file name="AutoBoost.php" hash="5b2527368d08cade3495819a823ff8f7"/><file name="Change.php" hash="c4e3f0cd6077fab4ebc7e078d031fc3d"/><file name="Changestatut.php" hash="21106c8021072b8f8cf8419fec0ad0a9"/><file name="Fidelitylog.php" hash="1644dc508b0a1c4d06397a48509f652c"/><file name="Observer.php" hash="10de641fc273af9dd06d7a106dccb755"/><file name="Openinviter.php" hash="a10e89360e9d94d46afc69b7c13fc047"/><file name="Sponsorlog.php" hash="834b0e8e29eff5061abb18621a22ddb5"/><file name="Sponsorship.php" hash="acd91d3c6a6dbe801e7dde41a8d2fb06"/><file name="Sponsorshipopeninviter.php" hash="9b2af360ba8b4c6b233697d2bf8b8798"/><file name="Status.php" hash="ad5779cf7a0887635315b74827780063"/><file name="Validator.php" hash="87d39a07bff5133894f8334f9f5fe967"/></dir><dir name="sql"><dir name="sponsorship_setup"><file name="mysql4-install-0.1.0.php" hash="cde2a97370601a046bcc559e22a7cdb8"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="99c4e9b7ab6d3aab2477195310482242"/><file name="mysql4-upgrade-0.1.1-0.1.2.php" hash="08dc31268dcb35b68abbc4c179f7ed03"/><file name="mysql4-upgrade-0.1.2-0.1.3.php" hash="9966b88c1e297dd4cae297859e4034a0"/><file name="mysql4-upgrade-0.1.3-0.1.4.php" hash="0d55e5801c8e4031aeece7787ffc94c1"/><file name="mysql4-upgrade-0.1.4-0.1.5.php" hash="6de811c47e0031c134a8343e230ca451"/><file name="mysql4-upgrade-0.1.5-0.1.6.php" hash="d6f43e969bf07f5859b1f251540c358d"/><file name="mysql4-upgrade-0.1.6-0.1.7.php" hash="5289d74fa889d0046a19d9714df5572b"/><file name="mysql4-upgrade-0.1.7-0.1.8.php" hash="89acdec2f7785fc2e6e82ff6265e439a"/><file name="mysql4-upgrade-0.1.8-0.1.9.php" hash="02158b6524f5d24c8e9d07022da2aa27"/><file name="mysql4-upgrade-0.1.10-0.1.11.php" hash="b29284b6cf0df556810ed3bdb47fd7dc"/><file name="mysql4-upgrade-1.0.3-1.0.4.php" hash="d6bd4428ca5918e44603d7dbcff23e74"/></dir></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><dir name="template"><dir name="email"><file name="sponsorship_coupon.html" hash="0ca5d0c23070e0a6a9f9822ad9612678"/><file name="sponsorship_invitation.html" hash="30fe91c3b83ee223f6bffb3dd779dd26"/></dir></dir></dir><dir name="fr_FR"><dir name="template"><dir name="email"><file name="sponsorship_coupon.html" hash="bbd873e171d6a9ca5f46e04314c39624"/><file name="sponsorship_invitation.html" hash="30fe91c3b83ee223f6bffb3dd779dd26"/></dir></dir><file name="Auguria_Sponsorship.csv" hash="276da561eeefe61b89d4fcb92ef356a9"/></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="default"><dir name="css"><file name="tableorderer.css" hash="30454132306ff6ac4dcf190aa922b7cc"/></dir><dir name="images"><dir name="tableorderer"><file name="asc.gif" hash="a54846803de3cc786eec3d69f9ac2d38"/><file name="bg.gif" hash="c01ad2e7c59d1a20a433cb873c21bd88"/><file name="bkg_toolbar.gif" hash="fb7ed019476eaa1643af922b59ede4fb"/><file name="desc.gif" hash="f8a1940c9cf44ab8870319169f3a14ff"/></dir></dir></dir></dir></dir></target><target name="magemedia"><dir name="sponsorship"><dir name="openinviter"><file name="logo_auguria.png" hash="cdbd00ab6efa0ff8e3ce6eaaa07c53ce"/></dir></dir></target></contents>
32
  <compatible/>
33
  <dependencies/>
34
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Auguria_Sponsorship</name>
4
+ <version>1.0.9</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">OSL 3.0</license>
7
  <channel>community</channel>
8
  <extends/>
9
+ <summary>Add possibility to :
10
+ - Add fidelity points to the customer if customer subscribe to the newletter on registration
11
+ - Add fidelity points on first order payment
12
+ -Add sponso points on first godson order payment</summary>
13
  <description>The module consists of :
14
  - A form to send invitations: when an invitation is sent, the guest mail is registered , and the customer id too.
15
  - A system of affiliation: The link sent through invitations refer to a controller that will create a cookie and a session to identify a person invited. We can equally put such links on third party sites.
26
  - If you enable automatic sponsorship recall, activate magento cron</description>
27
  <notes>If you have ideas for improvements or find bugs, please send them to Franck Charpentier at www.auguria.net, with Auguria LastReviews as part of the subject line.</notes>
28
  <authors><author><name>Auguria</name><user>auto-converted</user><email>magento@auguria.net</email></author></authors>
29
+ <date>2010-12-30</date>
30
+ <time>10:49:29</time>
31
+ <contents><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="sponsorship.xml" hash="934da279981ddb250e116b956a262c0c"/></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="sponsorship.xml" hash="b4e501c7d1d4bbd3f4c8db7e9fd936da"/></dir><dir name="template"><dir name="sponsorship"><dir name="customer"><dir name="account"><dir name="dashboard"><file name="fidelity_points.phtml" hash="afbada11c6c7819daa7a74c0ef186a1b"/><file name="sponsor_points.phtml" hash="a19f3594bfe1b4491bc8f906e08f86bf"/></dir><file name="dashboard.phtml" hash="a42e17c3f2458fdeb19a59c97e88a464"/><file name="fidelitypointsdetail.phtml" hash="c1a018f8c0f4d1859c7a79558ef33712"/><file name="sponsorpointsdetail.phtml" hash="bb957c677b95d359ea3281bdbd53ea3a"/></dir><dir name="form"><dir name="pointschange"><file name="pointschange_cash.phtml" hash="58adf546a6e8aa93b340a2d1aab50e73"/><file name="pointschange_coupon.phtml" hash="0190f17418f5f5b3ffa128e09ffa375e"/><file name="pointschange_gift.phtml" hash="29a244c931252894b98e1a9bf1c40fc4"/></dir><file name="boost.phtml" hash="cf19f616a64094c4ac23a635f83a67d7"/><file name="edit.phtml" hash="bc0b34815ddf80c519a61e3b24838212"/><file name="pointschange.phtml" hash="98fced0f1ac113b79e14521fea151afc"/><file name="register.phtml" hash="ec19e985600c3377a746f3a4e358d2dd"/></dir><dir name="widget"><file name="name.phtml" hash="bfb8c2e90a4e5af55a6479cc122d67b1"/><file name="virement.phtml" hash="74b9c05d0242aa06b6cc35a9abc23751"/></dir></dir><file name="openinviter.phtml" hash="b239707ebefe243d1b072a59f25b0a0b"/><file name="openinviterimport.phtml" hash="8e468750660c4b2556f4f1e1b50bfafb"/><file name="sponsorship.phtml" hash="a39616946d2f49fa0e5b55a74415628f"/></dir></dir></dir></dir></dir></target><target name="mage"><dir name="app"><dir name="etc"><dir name="modules"><file name="Auguria_Sponsorship.xml" hash="2ace21d88c17b2636514543e866169eb"/></dir></dir></dir><dir name="js"><dir name="tableorderer"><file name="table_orderer.js" hash="f23c21e5031d7218f83c9117cf7442eb"/></dir></dir></target><target name="magecommunity"><dir name="Auguria"><dir name="Sponsorship"><dir name="Block"><dir name="Adminhtml"><dir name="Change"><dir name="Edit"><dir name="Tab"><file name="Form.php" hash="cd94427577e45107683ea305a557f9d8"/></dir><file name="Form.php" hash="ae7412b583874b8fffc05cc3897f1a2b"/><file name="Tabs.php" hash="14027188a77ed427a54211d61471c962"/></dir><file name="Edit.php" hash="5c266273137c23f763d39d93f5ef82b4"/><file name="Grid.php" hash="9962a69732ae93157eb99ff663608203"/></dir><dir name="Link"><dir name="Edit"><dir name="Tab"><file name="Form.php" hash="98a2a13987cb165ee5233dcef0927daa"/></dir><file name="Form.php" hash="e6e087ae96b24d4edbe9e1f578e7a55a"/><file name="Tabs.php" hash="7d67a25094cf51ced551a8b3e21155c1"/></dir><file name="Edit.php" hash="bb82a0a9cd963648d7e6e34c616a0122"/><file name="Grid.php" hash="8703f106255a7f89a4e19d18e57c7209"/></dir><dir name="Openinviter"><dir name="Edit"><dir name="Tab"><file name="Form.php" hash="195714b736feb365b208346ab8323385"/></dir><file name="Form.php" hash="b4bdc64549563f0117f65c66f97d0fb8"/><file name="Tabs.php" hash="41a6ef79001601dacba231c9eefd4749"/></dir><file name="Edit.php" hash="2297909cf7059abd6b15080abe9dc586"/><file name="Grid.php" hash="d7c4af65017cbcb83831af451b1488ce"/></dir><dir name="Sponsorship"><dir name="Edit"><dir name="Tab"><file name="Form.php" hash="686b9a9a14d57e0f2e7edcf3d4e0416a"/></dir><file name="Form.php" hash="a3a2352db1c72663af0caa289287a9d2"/><file name="Tabs.php" hash="257863f6b317e37110dacc86b783565b"/></dir><file name="Edit.php" hash="40ea8077f12545878ddc0cd0ad2f8cad"/><file name="Grid.php" hash="83a98d5005f4b89dfa275ddea3355c16"/></dir><dir name="Widget"><dir name="Grid"><file name="Renderer.php" hash="35c8a336e1a0e2dcc8d48b558cee9253"/></dir></dir><file name="Change.php" hash="bec41dc1406063e264b15c9755cf3a5c"/><file name="Link.php" hash="922a5716b419d7becb0150cae3bda3de"/><file name="Openinviter.php" hash="291020a06d499b7b12e37e53e1963a08"/><file name="Sponsorship.php" hash="634e37981a47519ba1063be166fc511f"/></dir><dir name="Customer"><dir name="Account"><file name="PointsDetail.php" hash="2975bcbfe44640ebf90e6417941f0e12"/></dir><dir name="Form"><file name="Boost.php" hash="33cd49ab1ceed2816feb1d45b1c7a69b"/><file name="PointsChange.php" hash="92a71fe4f081b6c3b85cc645419fac04"/></dir><dir name="Widget"><file name="Name.php" hash="3c82b2d67f219ae56ac37526f72268fe"/><file name="Virement.php" hash="ba25badce7295811fe5deeafa284c114"/></dir></dir><dir name="Promo"><dir name="Catalog"><dir name="Edit"><dir name="Tab"><file name="Actions.php" hash="f5926196fd291cb45c13b5a8e1c018b6"/></dir></dir></dir><dir name="Quote"><dir name="Edit"><dir name="Tab"><file name="Actions.php" hash="4ff4de9b5e4d5200111d602625f91362"/></dir></dir></dir></dir><file name="Openinviter.php" hash="3051e44a791ccab457a37cef01357bd5"/><file name="Sponsorship.php" hash="40c257095b22fe117401af276b1f4bd7"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="ChangeController.php" hash="73c1db83413cdf077562f8fb8d4bd8ec"/><file name="LinkController.php" hash="e800d6add6c1b5362cc736f4e5c77e7a"/><file name="OpeninviterController.php" hash="82c2500286cb627c56d8655b79380d77"/><file name="SponsorshipController.php" hash="fff66a866f773ed8f6d3708c9e0d644f"/></dir><dir name="Customer"><file name="AccountController.php" hash="3589ee3b09c3d441e024dc5289b84394"/></dir><file name="BoostController.php" hash="c23cca5dfd34c8975f785e7973aa4d79"/><file name="FidelitypointsController.php" hash="2da584308b4c6b36978acc1b3674a43b"/><file name="IndexController.php" hash="37f688e9c6c4901e70d4d8caca157447"/><file name="OpeninviterController.php" hash="f7268aa63f3248a4c1c4a61b26990d87"/><file name="SponsorController.php" hash="b81147d898f8903d5167ab0eed14a8ed"/><file name="SponsorpointsController.php" hash="a75460b9177c6d7dc602bad6431f1dde"/></dir><dir name="etc"><file name="config.xml" hash="e1dba790dccfff6e3924f8334a0e52fb"/><file name="system.xml" hash="a2d63a978b99f8566422268771f86dcd"/></dir><dir name="Helper"><file name="Data.php" hash="277563504bc31f781436af2db0331fe5"/><file name="Mail.php" hash="e9dd8fa60f21637e982f685f5baddd57"/></dir><dir name="Lib"><dir name="OpenInviter"><dir name="conf"><file name="abv.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="aol.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="apropo.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="atlas.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="aussiemail.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="azet.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="badoo.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="bebo.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="bigstring.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="bookcrossing.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="bordermail.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="brazencareerist.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="canoe.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="care2.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="clevergo.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="cyworld.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="doramail.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="eons.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="evite.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="facebook.conf" hash="12cfb187449596c39774c4ac193295cc"/><file name="faces.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="famiva.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="fastmail.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="fdcareer.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="flickr.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="flingr.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="flixster.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="fm5.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="freemail.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="friendfeed.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="friendster.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="gawab.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="gmail.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="gmx_net.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="graffiti.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="hi5.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="hotmail.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="hushmail.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="hyves.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="inbox.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="india.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="indiatimes.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="inet.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="interia.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="katamail.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="kids.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="kincafe.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="konnects.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="koolro.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="lastfm.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="libero.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="linkedin.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="livejournal.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="lovento.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="lycos.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="mail2world.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="mail_com.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="mail_in.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="mail_ru.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="meinvz.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="meta.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="mevio.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="motortopia.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="msn.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="multiply.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="mycatspace.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="mydogspace.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="mynet.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="myspace.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="netaddress.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="netlog.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="ning.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="nz11.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="o2.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="operamail.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="orkut.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="perfspot.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="plaxo.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="plazes.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="plurk.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="pochta.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="popstarmail.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="rambler.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="rediff.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="sapo.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="skyrock.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="tagged.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="techemail.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="terra.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="twitter.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="uk2.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="vimeo.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="virgilio.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="vkontakte.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="walla.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="web_de.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="wpl.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="xanga.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="xing.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="xuqa.conf" hash="6e2fad3c6d126d7da250cb8976a9ad4f"/><file name="yahoo.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="yandex.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="youtube.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="zapak.conf" hash="42ed0b97cb6919d0cd402831bccc1ea3"/><file name="_hosted.conf" hash="1d09309103e660729b492433acda9822"/></dir><dir name="images"><file name="ers.gif" hash="cccdfd4ed0795b767d2a01f531781c10"/><file name="oks.gif" hash="6b4b170c9f10a0fa4b25307dd8f47e5b"/></dir><dir name="plugins"><file name="abv.plg.php" hash="1685755eae909c468055b9b36c915822"/><file name="aol.plg.php" hash="dd3522033c2cafeb62fd0beed5949bcf"/><file name="apropo.plg.php" hash="4426f976c1953383cf9d1f892aa9576e"/><file name="atlas.plg.php" hash="0b8e4237970ae54ff20187f5e861f972"/><file name="aussiemail.plg.php" hash="d40188b33455b3fd2e88cbde25f61709"/><file name="azet.plg.php" hash="e4a7c19450ca1ad84783a06ae3b1d61f"/><file name="badoo.plg.php" hash="b1d4863a173a80fc9d77331f1e60f2df"/><file name="bebo.plg.php" hash="2d7db898c660380ee74963667bec6bae"/><file name="bigstring.plg.php" hash="7de7a5516a8f0c71580970d8da4121eb"/><file name="bookcrossing.plg.php" hash="212a53a3a95659c56e15d6848549e25e"/><file name="bordermail.plg.php" hash="30190fa3da58d63ddd7e30e6ab0190dc"/><file name="brazencareerist.plg.php" hash="c68f39b6d7a07550abd63ed044ad85c2"/><file name="canoe.plg.php" hash="7737d89b163689cb793f0f37f6028efb"/><file name="care2.plg.php" hash="c066e81973194cca90036c37c7740937"/><file name="clevergo.plg.php" hash="9bd12fea0eb7f60043bcdca9116cb1bc"/><file name="cyworld.plg.php" hash="588dfdddcc2bc9ab2ff26c4616e0a42c"/><file name="doramail.plg.php" hash="81037085958f90a05111ad030c5a72f8"/><file name="eons.plg.php" hash="35009d6e25ae5584c554808b50145a19"/><file name="evite.plg.php" hash="d6c8acf7c24c2848eccedb269928d6eb"/><file name="facebook.plg.php" hash="6a1cfdc0dfc76b3dc3781aa2327ee833"/><file name="faces.plg.php" hash="d0affdf4e73ff6134acfaae5fda29323"/><file name="famiva.plg.php" hash="eee1c0a9a6d645baf014245ca2e9c3e9"/><file name="fastmail.plg.php" hash="da86fea25210ed40258ae2a107dcfe8f"/><file name="fdcareer.plg.php" hash="aad3d525fe09269de056f8ec03e43104"/><file name="flickr.plg.php" hash="055d1e64f116113379e3192b23dc84fc"/><file name="flingr.plg.php" hash="c2b415851babadb8048609874b411979"/><file name="flixster.plg.php" hash="773fad1c2c1775fcb74fb33f51d1fa24"/><file name="fm5.plg.php" hash="0576df91534edaab3d6b333d1968781a"/><file name="freemail.plg.php" hash="142951e9c20ce4447f44c6db7e5cc2e8"/><file name="friendfeed.plg.php" hash="399c987766110735fdd301979997fe48"/><file name="friendster.plg.php" hash="8b3402876a73bf91a84d3a6d8dbb1951"/><file name="gawab.plg.php" hash="c4cb42d893a99b370d9597f20da5c01e"/><file name="gmail.plg.php" hash="83d92f7f75e048210aec2fdecdbd67e0"/><file name="gmx_net.plg.php" hash="218b73370a1367455aeee09695bc4e2a"/><file name="graffiti.plg.php" hash="36f6a6f03fceb9b0e008c1a281a17eb2"/><file name="hi5.plg.php" hash="ba133ae4e865c10f6ce3ddc738751374"/><file name="hotmail.plg.php" hash="ef3241a0a43020412162d8f6dd9dd206"/><file name="hushmail.plg.php" hash="d3f9f339ac03c8aa2426f7a2fe4f2606"/><file name="hyves.plg.php" hash="4dca8f35b17070c42bd16fd86352baf3"/><file name="inbox.plg.php" hash="34066ac6458b6506921e11dde302e3c2"/><file name="india.plg.php" hash="cdd4e86f5b21122b2ebf898eb78b0311"/><file name="indiatimes.plg.php" hash="bbbda190c92579f469f0b4712ba9806f"/><file name="inet.plg.php" hash="6bc3da45b492ba41012b25e501c05273"/><file name="interia.plg.php" hash="3fb3cb41913d12228f162ac32539a848"/><file name="katamail.plg.php" hash="2c2c85f1cab23f236295e5340da10511"/><file name="kids.plg.php" hash="5fae2d825799b0793e2b131162ec8e07"/><file name="kincafe.plg.php" hash="39f0d662293f3db3bd9b0bb9e57b8e27"/><file name="konnects.plg.php" hash="0fd4bc3f8361fb7e5f04d277b4f7f121"/><file name="koolro.plg.php" hash="ebc1936657a99eb8b96ee178d9b7e15c"/><file name="lastfm.plg.php" hash="a293d4bde8a36b1868ddc432e1f201e6"/><file name="libero.plg.php" hash="29cbf372f39d77fd0b62d0777ded4317"/><file name="linkedin.plg.php" hash="a705475d12bb2458d9bad14497211a14"/><file name="livejournal.plg.php" hash="c9c4bd30963d28eee5038841a7d7c788"/><file name="lovento.plg.php" hash="e26c7fe712efdd69fe3788b02ebf514b"/><file name="lycos.plg.php" hash="41a133d41ef4627b353b0f33149629c0"/><file name="mail2world.plg.php" hash="5737b208425e9d03988303d1c20baac6"/><file name="mail_com.plg.php" hash="5d2c20c61d5ba58c4e4c4fc6e162cb20"/><file name="mail_in.plg.php" hash="bf443e42022a368819bcbb788baaa095"/><file name="mail_ru.plg.php" hash="64b7d2daef963b4fd7e72dd969a04cd2"/><file name="meinvz.plg.php" hash="409380a6ca5c70f8f7ae998d37195115"/><file name="meta.plg.php" hash="17bd2e282a8509a14c2d440ea02d8961"/><file name="mevio.plg.php" hash="d175cd50dc07d749e7118a3a3b836800"/><file name="motortopia.plg.php" hash="507c050bb6e0cc73884c427d4745c7a0"/><file name="msn.plg.php" hash="2a205b0556aa7b8908dca3b15017db4f"/><file name="multiply.plg.php" hash="22e5d241084c259a79330eebff508d95"/><file name="mycatspace.plg.php" hash="1282b9619ddfcba5d924c0e31ea74cc7"/><file name="mydogspace.plg.php" hash="be44672096adbe4e2532d0a9df027b5f"/><file name="mynet.plg.php" hash="a2a38a688707957e216d3868c8b1741e"/><file name="myspace.plg.php" hash="bfcabb115825937a9ed4f9745f52ca7e"/><file name="netaddress.plg.php" hash="8e2ccf82123f831b2616c8d3a80f579f"/><file name="netlog.plg.php" hash="246411cc237ef587d31003c03c61b05b"/><file name="ning.plg.php" hash="e59cb73b203a22978ead363c49e48d3d"/><file name="nz11.plg.php" hash="b94995c177198c061b628ddc82d4c7fc"/><file name="o2.plg.php" hash="8e44c5027c493fff7be428ff034f0466"/><file name="operamail.plg.php" hash="5e3a90f0be46b03bcde54eebd76371c9"/><file name="orkut.plg.php" hash="1a291548a82889b36f976bd091260aa5"/><file name="perfspot.plg.php" hash="9d4a9b33f8cf809e5c73bfc517af53db"/><file name="plaxo.plg.php" hash="d640845713388d7c87a206b3f51060f2"/><file name="plazes.plg.php" hash="f6d71432926c126d7f165e6c83a16854"/><file name="plurk.plg.php" hash="e780f5cdd31029cc1b153a1c5b14a965"/><file name="pochta.plg.php" hash="b5732832c05bf982a5950fa32ee4d62a"/><file name="popstarmail.plg.php" hash="a36517a17fa2a461ab890861a4c452fd"/><file name="rambler.plg.php" hash="148cfdfa5b4e5eb2479692dd9f1533a7"/><file name="rediff.plg.php" hash="5679b17973310ecf1ba8b097d3acffaa"/><file name="sapo.plg.php" hash="2bd76d540c454da5f014eba59074e835"/><file name="skyrock.plg.php" hash="1d6113c0c726f48c250160bcc7826aa2"/><file name="tagged.plg.php" hash="1a88811dfd57937db6aece3026f7f99a"/><file name="techemail.plg.php" hash="9894baf3c22e835dbcf62796327d9f99"/><file name="terra.plg.php" hash="094ae4ab8e63dd0f075a860c9aba2094"/><file name="twitter.plg.php" hash="a385725eb41c3cc003c52429295d1355"/><file name="uk2.plg.php" hash="ca5238d090e6a65709302a149caf5ffb"/><file name="vimeo.plg.php" hash="de5ab46f0cc5919b242c5b200f0ef724"/><file name="virgilio.plg.php" hash="38df3729142bd2b40792b7a1793446b7"/><file name="vkontakte.plg.php" hash="7db9b7a03e8f4ee2d2d7f5192ec18912"/><file name="walla.plg.php" hash="5340dda0d54849d2e313ab97015db215"/><file name="web_de.plg.php" hash="d3ed9a0c556f08bc5c67f978c7be4727"/><file name="wpl.plg.php" hash="b151407c39c360f49ffb9ca9fd73b32b"/><file name="xanga.plg.php" hash="89b5c2c3db98e735e4d1f19fb1c81786"/><file name="xing.plg.php" hash="4f89f01bb8bcbc856441cb6ecb2fbe60"/><file name="xuqa.plg.php" hash="1219e94f6ef0919025b2c93741e55fbd"/><file name="yahoo.plg.php" hash="f2953a803d0d61ffce2c9136d1706758"/><file name="yandex.plg.php" hash="2c211df8b0511fb8c832a00976f2cee1"/><file name="youtube.plg.php" hash="fc05c436e6c2dd1c6c8fa336e7e893c5"/><file name="zapak.plg.php" hash="2274bd725d3bda8df0ae9d45d3ce1470"/><file name="_base.php" hash="79459bef6fcea96f6a7d4a584add9052"/><file name="_hosted.plg.php" hash="69514e56e1833df16884b6762bc620ce"/></dir><file name="autoupdate.php" hash="df781d645e37271f23432bb82b3360a2"/><file name="config.php" hash="6c16534afd6e50dfda0c5be417bd6fe7"/><file name="LICENSE.txt" hash="277c3d400c7488e54746141297a952cb"/><file name="notifier.php" hash="88e3be687de995aae52a8ce248c49bce"/><file name="openinviter.php" hash="d2c0237f86cd7c21dadc2c441e73abb1"/><file name="POLICY.txt" hash="6262372bc84e172c7fd89d9ac61f9794"/><file name="stats.php" hash="5af8362ab3e9f89f5e8560b2623f767a"/></dir><file name="Html2Text.php" hash="4bd5cf3bd59121ffa9d15b9a60a56ca4"/></dir><dir name="Model"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Backend"><dir name="Sponsorship"><file name="Entier.php" hash="cb45db31cab4b797103d686e03404d6d"/><file name="Float.php" hash="35b76ecdc9065ae9aef1acdee66ab57c"/><file name="NaturalNumber.php" hash="62f38f42436a148ae272068d649cf1f5"/><file name="Openinviter.php" hash="b4ac237d528a505bb389f9b29d2ec486"/></dir></dir></dir></dir></dir><dir name="Core"><dir name="Email"><file name="Template.php" hash="9394636054f6709f0a41bec9f471b577"/></dir></dir><dir name="Customer"><file name="Customer.php" hash="1ee0fbe7c2ce96fac9f7dfc97e179a9e"/></dir><dir name="Mysql4"><dir name="CatalogFidelityPoint"><file name="Collection.php" hash="b151b96d8370ea1fe9e309559fb04573"/></dir><dir name="CatalogSponsorPoint"><file name="Collection.php" hash="a56b2950a04ae446dcf82ad4bdfadb07"/></dir><dir name="Change"><file name="Collection.php" hash="99a67418cc7b573f285c04a5d7f6020d"/></dir><dir name="FidelityLog"><file name="Collection.php" hash="7230b303a336da8167709168410c0531"/></dir><dir name="Sponsorlog"><file name="Collection.php" hash="8efa2fb23ec7a6ad2373395ff4739f1e"/></dir><dir name="Sponsorship"><file name="Collection.php" hash="bea288d9bdc6faee88795895eb5bd6ee"/></dir><dir name="Sponsorshipopeninviter"><file name="Collection.php" hash="02d068c627dcfde82019855510d33c1f"/></dir><file name="CatalogFidelityPoint.php" hash="ab4402569102622be8264d135768afbc"/><file name="CatalogSponsorPoint.php" hash="f34d98e76da49afe1e2049dcb3c73626"/><file name="Change.php" hash="fcc6ad58aae6b4051fa997c03b5b5756"/><file name="Fidelitylog.php" hash="47a37a5374c82d3428a6bcc301316ce8"/><file name="Rule.php" hash="2ee2d8879d6ac0be3432e1e5334d77cf"/><file name="Sponsorlog.php" hash="97bde1eef9156b5a20f5f2f92a6fee03"/><file name="Sponsorship.php" hash="2c6d63261112e53a9c442ea3568e2e32"/><file name="Sponsorshipopeninviter.php" hash="ad84d61baa3a105b6f9ff469ca4ba08a"/></dir><dir name="SocialBookmarking"><file name="Urls.php" hash="8507b7302d5aa76c9b6bc8e1e92e0598"/></dir><file name="AutoBoost.php" hash="ddfbf1197531a3b531ee93a5eaae1b22"/><file name="Change.php" hash="c4e3f0cd6077fab4ebc7e078d031fc3d"/><file name="Changestatut.php" hash="21106c8021072b8f8cf8419fec0ad0a9"/><file name="Fidelitylog.php" hash="1644dc508b0a1c4d06397a48509f652c"/><file name="Observer.php" hash="c90f4d1e30cbd919d237630570877857"/><file name="Openinviter.php" hash="a10e89360e9d94d46afc69b7c13fc047"/><file name="Sponsorlog.php" hash="834b0e8e29eff5061abb18621a22ddb5"/><file name="Sponsorship.php" hash="acd91d3c6a6dbe801e7dde41a8d2fb06"/><file name="Sponsorshipopeninviter.php" hash="9b2af360ba8b4c6b233697d2bf8b8798"/><file name="Status.php" hash="ad5779cf7a0887635315b74827780063"/><file name="Validator.php" hash="87d39a07bff5133894f8334f9f5fe967"/></dir><dir name="sql"><dir name="sponsorship_setup"><file name="mysql4-install-0.1.0.php" hash="cde2a97370601a046bcc559e22a7cdb8"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="99c4e9b7ab6d3aab2477195310482242"/><file name="mysql4-upgrade-0.1.1-0.1.2.php" hash="08dc31268dcb35b68abbc4c179f7ed03"/><file name="mysql4-upgrade-0.1.2-0.1.3.php" hash="9966b88c1e297dd4cae297859e4034a0"/><file name="mysql4-upgrade-0.1.3-0.1.4.php" hash="0d55e5801c8e4031aeece7787ffc94c1"/><file name="mysql4-upgrade-0.1.4-0.1.5.php" hash="6de811c47e0031c134a8343e230ca451"/><file name="mysql4-upgrade-0.1.5-0.1.6.php" hash="d6f43e969bf07f5859b1f251540c358d"/><file name="mysql4-upgrade-0.1.6-0.1.7.php" hash="5289d74fa889d0046a19d9714df5572b"/><file name="mysql4-upgrade-0.1.7-0.1.8.php" hash="89acdec2f7785fc2e6e82ff6265e439a"/><file name="mysql4-upgrade-0.1.8-0.1.9.php" hash="02158b6524f5d24c8e9d07022da2aa27"/><file name="mysql4-upgrade-0.1.10-0.1.11.php" hash="b29284b6cf0df556810ed3bdb47fd7dc"/><file name="mysql4-upgrade-1.0.3-1.0.4.php" hash="d6bd4428ca5918e44603d7dbcff23e74"/><file name="mysql4-upgrade-1.0.7-1.0.8.php" hash="54d2e16a888361b67d5640072e3ddc76"/></dir></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><dir name="template"><dir name="email"><file name="sponsorship_coupon.html" hash="0ca5d0c23070e0a6a9f9822ad9612678"/><file name="sponsorship_invitation.html" hash="30fe91c3b83ee223f6bffb3dd779dd26"/></dir></dir></dir><dir name="es_ES"><dir name="template"><dir name="email"><file name="sponsorship_coupon.html" hash="5918b7eba6d7cdeb8f410de14e7f2329"/><file name="sponsorship_invitation.html" hash="30fe91c3b83ee223f6bffb3dd779dd26"/></dir></dir><file name="Auguria_Sponsorship.csv" hash="e060bf41dc40cafa679e324a530dfa0d"/></dir><dir name="fr_FR"><dir name="template"><dir name="email"><file name="sponsorship_coupon.html" hash="265d0d49f825eeb40b6c6c3d74ac4dab"/><file name="sponsorship_invitation.html" hash="30fe91c3b83ee223f6bffb3dd779dd26"/></dir></dir><file name="Auguria_Sponsorship.csv" hash="7eb6e58b58abf61a7ceb53df33e9c24f"/></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="default"><dir name="css"><file name="tableorderer.css" hash="30454132306ff6ac4dcf190aa922b7cc"/></dir><dir name="images"><dir name="tableorderer"><file name="asc.gif" hash="a54846803de3cc786eec3d69f9ac2d38"/><file name="bg.gif" hash="c01ad2e7c59d1a20a433cb873c21bd88"/><file name="bkg_toolbar.gif" hash="fb7ed019476eaa1643af922b59ede4fb"/><file name="desc.gif" hash="f8a1940c9cf44ab8870319169f3a14ff"/></dir></dir></dir></dir></dir></target><target name="magemedia"><dir name="sponsorship"><dir name="openinviter"><file name="logo_auguria.png" hash="cdbd00ab6efa0ff8e3ce6eaaa07c53ce"/></dir></dir></target></contents>
32
  <compatible/>
33
  <dependencies/>
34
  </package>