Auguria_Sponsorship - Version 1.0.4

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.4
Comparing to
See all releases


Code changes from version 1.0.3 to 1.0.4

Files changed (30) hide show
  1. app/code/community/Auguria/Sponsorship/Block/Adminhtml/Change.php +8 -9
  2. app/code/community/Auguria/Sponsorship/Block/Adminhtml/Link.php +3 -4
  3. app/code/community/Auguria/Sponsorship/Block/Adminhtml/Openinviter.php +18 -0
  4. app/code/community/Auguria/Sponsorship/Block/Adminhtml/Openinviter/Edit.php +37 -0
  5. app/code/community/Auguria/Sponsorship/Block/Adminhtml/Openinviter/Edit/Form.php +24 -0
  6. app/code/community/Auguria/Sponsorship/Block/Adminhtml/Openinviter/Edit/Tab/Form.php +62 -0
  7. app/code/community/Auguria/Sponsorship/Block/Adminhtml/Openinviter/Edit/Tabs.php +29 -0
  8. app/code/community/Auguria/Sponsorship/Block/Adminhtml/Openinviter/Grid.php +120 -0
  9. app/code/community/Auguria/Sponsorship/Block/Adminhtml/Sponsorship.php +3 -6
  10. app/code/community/Auguria/Sponsorship/Block/Adminhtml/Widget/Grid/Renderer.php +20 -0
  11. app/code/community/Auguria/Sponsorship/Block/Sponsorship.php +8 -0
  12. app/code/community/Auguria/Sponsorship/Model/Bookmarks.php +21 -0
  13. app/code/community/Auguria/Sponsorship/Model/Mysql4/Sponsorshipopeninviter.php +15 -0
  14. app/code/community/Auguria/Sponsorship/Model/Mysql4/Sponsorshipopeninviter/Collection.php +15 -0
  15. app/code/community/Auguria/Sponsorship/Model/Observer.php +5 -2
  16. app/code/community/Auguria/Sponsorship/Model/Openinviter.php +19 -0
  17. app/code/community/Auguria/Sponsorship/Model/SocialBookmarking/Bookmarks.php +61 -0
  18. app/code/community/Auguria/Sponsorship/Model/Sponsorshipopeninviter.php +15 -0
  19. app/code/community/Auguria/Sponsorship/controllers/Adminhtml/OpeninviterController.php +211 -0
  20. app/code/community/Auguria/Sponsorship/controllers/OpeninviterController.php +7 -0
  21. app/code/community/Auguria/Sponsorship/etc/config.xml +22 -5
  22. app/code/community/Auguria/Sponsorship/etc/system.xml +4 -5
  23. app/code/community/Auguria/Sponsorship/sql/sponsorship_setup/{mysql4-upgrade-0.1.9-0.1.10.php → mysql4-upgrade-0.1.10-0.1.11.php} +0 -0
  24. app/code/community/Auguria/Sponsorship/sql/sponsorship_setup/mysql4-upgrade-1.0.3-1.0.4.php +23 -0
  25. app/design/adminhtml/default/default/layout/sponsorship.xml +6 -1
  26. app/design/frontend/default/default/template/sponsorship/openinviter.phtml +1 -1
  27. app/design/frontend/default/default/template/sponsorship/sponsorship.phtml +24 -4
  28. app/locale/fr_FR/Auguria_Sponsorship.csv +13 -1
  29. media/sponsorship/openinviter/logo_auguria.png +0 -0
  30. package.xml +4 -4
app/code/community/Auguria/Sponsorship/Block/Adminhtml/Change.php CHANGED
@@ -7,13 +7,12 @@
7
  */
8
  class Auguria_Sponsorship_Block_Adminhtml_Change extends Mage_Adminhtml_Block_Widget_Grid_Container
9
  {
10
- public function __construct()
11
- {
12
- Mage_Adminhtml_Block_Widget_Container::__construct();
13
- $this->setTemplate('widget/grid/container.phtml');
14
- $this->_controller = 'adminhtml_change';
15
- $this->_blockGroup = 'sponsorship';
16
- $this->_headerText = $this->__('Points exchanges list');
17
- //$this->_addButtonLabel = $this->__('Ajouter un échange');
18
- }
19
  }
7
  */
8
  class Auguria_Sponsorship_Block_Adminhtml_Change extends Mage_Adminhtml_Block_Widget_Grid_Container
9
  {
10
+ public function __construct()
11
+ {
12
+ $this->_controller = 'adminhtml_change';
13
+ $this->_blockGroup = 'sponsorship';
14
+ $this->_headerText = $this->__('Points exchanges list');
15
+ parent::__construct();
16
+ $this->removeButton('add');
17
+ }
 
18
  }
app/code/community/Auguria/Sponsorship/Block/Adminhtml/Link.php CHANGED
@@ -8,12 +8,11 @@
8
  class Auguria_Sponsorship_Block_Adminhtml_Link extends Mage_Adminhtml_Block_Widget_Grid_Container
9
  {
10
  public function __construct()
11
- {
12
- Mage_Adminhtml_Block_Widget_Container::__construct();
13
- $this->setTemplate('widget/grid/container.phtml');
14
  $this->_controller = 'adminhtml_link';
15
  $this->_blockGroup = 'sponsorship';
16
  $this->_headerText = $this->__('Sponsorships list');
17
- //$this->_addButtonLabel = $this->__('Ajouter un échange');
 
18
  }
19
  }
8
  class Auguria_Sponsorship_Block_Adminhtml_Link extends Mage_Adminhtml_Block_Widget_Grid_Container
9
  {
10
  public function __construct()
11
+ {
 
 
12
  $this->_controller = 'adminhtml_link';
13
  $this->_blockGroup = 'sponsorship';
14
  $this->_headerText = $this->__('Sponsorships list');
15
+ parent::__construct();
16
+ $this->removeButton('add');
17
  }
18
  }
app/code/community/Auguria/Sponsorship/Block/Adminhtml/Openinviter.php ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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_Block_Adminhtml_Openinviter extends Mage_Adminhtml_Block_Widget_Grid_Container
9
+ {
10
+ public function __construct()
11
+ {
12
+ $this->_controller = 'adminhtml_openinviter';
13
+ $this->_blockGroup = 'sponsorship';
14
+ $this->_headerText = $this->__('Open inviter providers');
15
+ $this->_addButtonLabel = $this->__('Add a provider');
16
+ parent::__construct();
17
+ }
18
+ }
app/code/community/Auguria/Sponsorship/Block/Adminhtml/Openinviter/Edit.php ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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_Block_Adminhtml_Openinviter_Edit extends Mage_Adminhtml_Block_Widget_Form_Container
9
+ {
10
+ public function __construct()
11
+ {
12
+ parent::__construct();
13
+
14
+ $this->_objectId = 'id';
15
+ $this->_blockGroup = 'sponsorship';
16
+ $this->_controller = 'adminhtml_openinviter';
17
+
18
+ $this->_addButton('back', array(
19
+ 'label' => Mage::helper('adminhtml')->__('Back'),
20
+ 'onclick' => 'setLocation(\'' . $this->getBackUrl() . '\')',
21
+ 'class' => 'back',
22
+ ), -1);
23
+
24
+ $this->_updateButton('save', 'label', Mage::helper('sponsorship')->__('Save'));
25
+ $this->_updateButton('delete', 'label', Mage::helper('sponsorship')->__('Delete'));
26
+
27
+ }
28
+
29
+ public function getHeaderText()
30
+ {
31
+ if( Mage::registry('openinviter_data') && Mage::registry('openinviter_data')->getId() ) {
32
+ return Mage::helper('sponsorship')->__("Edition of the Open inviter provider '%s'", $this->htmlEscape(Mage::registry('openinviter_data')->getName()));
33
+ } else {
34
+ return Mage::helper('sponsorship')->__('Add a provider');
35
+ }
36
+ }
37
+ }
app/code/community/Auguria/Sponsorship/Block/Adminhtml/Openinviter/Edit/Form.php ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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_Block_Adminhtml_Openinviter_Edit_Form extends Mage_Adminhtml_Block_Widget_Form
9
+ {
10
+ protected function _prepareForm()
11
+ {
12
+ $form = new Varien_Data_Form(array(
13
+ 'id' => 'edit_form',
14
+ 'action' => $this->getUrl('*/*/save', array('id' => $this->getRequest()->getParam('id'))),
15
+ 'method' => 'post',
16
+ 'enctype' => 'multipart/form-data'
17
+ )
18
+ );
19
+
20
+ $form->setUseContainer(true);
21
+ $this->setForm($form);
22
+ return parent::_prepareForm();
23
+ }
24
+ }
app/code/community/Auguria/Sponsorship/Block/Adminhtml/Openinviter/Edit/Tab/Form.php ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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_Block_Adminhtml_Openinviter_Edit_Tab_Form extends Mage_Adminhtml_Block_Widget_Form
9
+ {
10
+ protected function _prepareForm()
11
+ {
12
+ $form = new Varien_Data_Form();
13
+ $this->setForm($form);
14
+ $fieldset = $form->addFieldset('openinviter_form', array('legend'=>Mage::helper('sponsorship')->__("Provider information")));
15
+ $openinviter = Mage::getModel('sponsorship/openinviter');
16
+ $plugins = $openinviter->getPluginsArray();
17
+
18
+ $fieldset->addField('code', 'select', array(
19
+ 'label' => Mage::helper('sponsorship')->__('Code'),
20
+ 'class' => 'required-entry',
21
+ 'required' => true,
22
+ 'name' => 'code',
23
+ 'values' => $plugins
24
+ ));
25
+
26
+ $fieldset->addField('name', 'text', array(
27
+ 'label' => Mage::helper('sponsorship')->__('Name'),
28
+ 'name' => 'name',
29
+ ));
30
+
31
+ $fieldset->addField('status', 'select', array(
32
+ 'label' => Mage::helper('sponsorship')->__('Status'),
33
+ 'name' => 'status',
34
+ 'values' => array(
35
+ array(
36
+ 'value' => 1,
37
+ 'label' => Mage::helper('sponsorship')->__('Enabled'),
38
+ ),
39
+
40
+ array(
41
+ 'value' => 2,
42
+ 'label' => Mage::helper('sponsorship')->__('Disabled'),
43
+ ),
44
+ ),
45
+ ));
46
+
47
+ $fieldset->addField('image', 'image', array(
48
+ 'label' => Mage::helper('sponsorship')->__('Image'),
49
+ 'required' => false,
50
+ 'name' => 'openinviterimage',
51
+ ));
52
+
53
+ if ( Mage::getSingleton('adminhtml/session')->getSponsorshipData() )
54
+ {
55
+ $form->setValues(Mage::getSingleton('adminhtml/session')->getSponsorshipData());
56
+ Mage::getSingleton('adminhtml/session')->setSponsorshipData(null);
57
+ } elseif ( Mage::registry('openinviter_data') ) {
58
+ $form->setValues(Mage::registry('openinviter_data')->getData());
59
+ }
60
+ return parent::_prepareForm();
61
+ }
62
+ }
app/code/community/Auguria/Sponsorship/Block/Adminhtml/Openinviter/Edit/Tabs.php ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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_Block_Adminhtml_Openinviter_Edit_Tabs extends Mage_Adminhtml_Block_Widget_Tabs
9
+ {
10
+
11
+ public function __construct()
12
+ {
13
+ parent::__construct();
14
+ $this->setId('openinviter_tabs');
15
+ $this->setDestElementId('edit_form');
16
+ $this->setTitle(Mage::helper('sponsorship')->__('Provider detail'));
17
+ }
18
+
19
+ protected function _beforeToHtml()
20
+ {
21
+ $this->addTab('form_section', array(
22
+ 'label' => Mage::helper('sponsorship')->__('Provider detail'),
23
+ 'title' => Mage::helper('sponsorship')->__('Provider detail'),
24
+ 'content' => $this->getLayout()->createBlock('sponsorship/adminhtml_openinviter_edit_tab_form')->toHtml(),
25
+ ));
26
+
27
+ return parent::_beforeToHtml();
28
+ }
29
+ }
app/code/community/Auguria/Sponsorship/Block/Adminhtml/Openinviter/Grid.php ADDED
@@ -0,0 +1,120 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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_Block_Adminhtml_Openinviter_Grid extends Mage_Adminhtml_Block_Widget_Grid
9
+ {
10
+ public function __construct()
11
+ {
12
+ parent::__construct();
13
+ $this->setId('openinviterGrid');
14
+ $this->setDefaultSort('code');
15
+ $this->setDefaultDir('ASC');
16
+ $this->setSaveParametersInSession(true);
17
+ }
18
+
19
+ protected function _prepareCollection()
20
+ {
21
+ $collection = Mage::getResourceModel('sponsorship/sponsorshipopeninviter_collection')
22
+ ;
23
+ $this->setCollection($collection);
24
+ return parent::_prepareCollection();
25
+ }
26
+
27
+ protected function _prepareColumns()
28
+ {
29
+ $this->addColumn('sponsorship_openinviter_id', array(
30
+ 'header' => Mage::helper('sponsorship')->__('ID'),
31
+ 'align' =>'right',
32
+ 'index' => 'sponsorship_openinviter_id',
33
+ ));
34
+
35
+ $this->addColumn('code', array(
36
+ 'header' => Mage::helper('sponsorship')->__('Code'),
37
+ 'index' => 'code',
38
+ ));
39
+
40
+ $this->addColumn('name', array(
41
+ 'header' => Mage::helper('sponsorship')->__('Name'),
42
+ 'index' => 'name',
43
+ ));
44
+
45
+ $this->addColumn('image', array(
46
+ 'header' => Mage::helper('sponsorship')->__('Image'),
47
+ 'align' =>'center',
48
+ 'width' => '50px',
49
+ 'filter' => false,
50
+ 'sortable' => false,
51
+ 'renderer' => 'sponsorship/adminhtml_widget_grid_renderer',
52
+ ));
53
+
54
+ $this->addColumn('status', array(
55
+ 'header' => Mage::helper('sponsorship')->__('Status'),
56
+ 'index' => 'status',
57
+ 'type' => 'options',
58
+ 'options' => array(
59
+ 1 => Mage::helper('sponsorship')->__('Enabled'),
60
+ 2 => Mage::helper('sponsorship')->__('Disabled'),
61
+ ),
62
+ ));
63
+
64
+ $this->addColumn('action',
65
+ array(
66
+ 'header' => Mage::helper('sponsorship')->__('Action'),
67
+ 'type' => 'action',
68
+ 'getter' => 'getId',
69
+ 'actions' => array(
70
+ array(
71
+ 'caption' => Mage::helper('sponsorship')->__('Edit'),
72
+ 'url' => array('base'=> '*/*/edit'),
73
+ 'field' => 'id'
74
+ )
75
+ ),
76
+ 'filter' => false,
77
+ 'sortable' => false,
78
+ 'index' => 'stores',
79
+ 'is_system' => true,
80
+ ));
81
+
82
+ return parent::_prepareColumns();
83
+ }
84
+
85
+ protected function _prepareMassaction()
86
+ {
87
+ $this->setMassactionIdField('sponsorship_openinviter_id');
88
+ $this->getMassactionBlock()->setFormFieldName('openinviter');
89
+
90
+ $this->getMassactionBlock()->addItem('delete', array(
91
+ 'label' => Mage::helper('sponsorship')->__('Delete'),
92
+ 'url' => $this->getUrl('*/*/massDelete'),
93
+ 'confirm' => Mage::helper('sponsorship')->__('Are you sure?')
94
+ ));
95
+
96
+ $statuses = Mage::getSingleton('sponsorship/status')->getOptionArray();
97
+
98
+ array_unshift($statuses, array('label'=>'', 'value'=>''));
99
+ $this->getMassactionBlock()->addItem('status', array(
100
+ 'label'=> Mage::helper('sponsorship')->__('Change status'),
101
+ 'url' => $this->getUrl('*/*/massStatus', array('_current'=>true)),
102
+ 'additional' => array(
103
+ 'visibility' => array(
104
+ 'name' => 'status',
105
+ 'type' => 'select',
106
+ 'class' => 'required-entry',
107
+ 'label' => Mage::helper('sponsorship')->__('Status'),
108
+ 'values' => $statuses
109
+ )
110
+ )
111
+ ));
112
+ return $this;
113
+ }
114
+
115
+ public function getRowUrl($row)
116
+ {
117
+ return $this->getUrl('*/*/edit', array('id' => $row->getId()));
118
+ }
119
+
120
+ }
app/code/community/Auguria/Sponsorship/Block/Adminhtml/Sponsorship.php CHANGED
@@ -8,14 +8,11 @@
8
  class Auguria_Sponsorship_Block_Adminhtml_Sponsorship extends Mage_Adminhtml_Block_Widget_Grid_Container
9
  {
10
  public function __construct()
11
- {
12
- Mage_Adminhtml_Block_Widget_Container::__construct();
13
- $this->setTemplate('widget/grid/container.phtml');
14
-
15
  $this->_controller = 'adminhtml_sponsorship';
16
  $this->_blockGroup = 'sponsorship';
17
  $this->_headerText = $this->__('Invitations list');
18
- //$this->_addButtonLabel = $this->__('Ajouter une invitation');
19
-
20
  }
21
  }
8
  class Auguria_Sponsorship_Block_Adminhtml_Sponsorship extends Mage_Adminhtml_Block_Widget_Grid_Container
9
  {
10
  public function __construct()
11
+ {
 
 
 
12
  $this->_controller = 'adminhtml_sponsorship';
13
  $this->_blockGroup = 'sponsorship';
14
  $this->_headerText = $this->__('Invitations list');
15
+ parent::__construct();
16
+ $this->removeButton('add');
17
  }
18
  }
app/code/community/Auguria/Sponsorship/Block/Adminhtml/Widget/Grid/Renderer.php ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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_Block_Adminhtml_Widget_Grid_Renderer extends Mage_Adminhtml_Block_Widget_Grid_Column_Renderer_Abstract
9
+ {
10
+ public function render(Varien_Object $row)
11
+ {
12
+ return ($this->_getImage($row));
13
+ }
14
+
15
+ protected function _getImage(Varien_Object $row)
16
+ {
17
+ $img = $row->image != '' ? '<img src="'.Mage::getBaseUrl('media').$row->image.'" alt="'.Mage::getBaseUrl('media').$row->image.'" />' : '';
18
+ return $img;
19
+ }
20
+ }
app/code/community/Auguria/Sponsorship/Block/Sponsorship.php CHANGED
@@ -97,4 +97,12 @@ class Auguria_Sponsorship_Block_Sponsorship extends Mage_Core_Block_Template
97
  $back_url = isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : $this->getUrl('customer/account/');
98
  return $back_url;
99
  }
 
 
 
 
 
 
 
 
100
  }
97
  $back_url = isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : $this->getUrl('customer/account/');
98
  return $back_url;
99
  }
100
+
101
+ public function getActiveProviders()
102
+ {
103
+ $providers = Mage::getResourceModel('sponsorship/sponsorshipopeninviter_collection')
104
+ ->addFieldToFilter('status', 1)
105
+ ;
106
+ return $providers->getItems();
107
+ }
108
  }
app/code/community/Auguria/Sponsorship/Model/Bookmarks.php ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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_Bookmarks extends Magentix_SocialBookmarking_Model_Bookmarks
9
+ {
10
+ /* Return page URL */
11
+ private function getPUrl()
12
+ {
13
+ mage::log('rewrite ok');
14
+ $param = "";
15
+ if (Mage::getSingleton('customer/session')->getCustomerId())
16
+ $param = '?sponsor_id='.Mage::getSingleton('customer/session')->getCustomerId();
17
+
18
+ $id = Mage::getSingleton('customer/session')->getCustomerId();
19
+ return preg_replace(array('/\?___SID=U/'),array(''),Mage::helper('core/url')->getCurrentUrl().$param);
20
+ }
21
+ }
app/code/community/Auguria/Sponsorship/Model/Mysql4/Sponsorshipopeninviter.php ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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_Mysql4_Sponsorshipopeninviter extends Mage_Core_Model_Mysql4_Abstract
9
+ {
10
+ public function _construct()
11
+ {
12
+ // Note that the sponsorship_openinviter_id refers to the key field in your database table.
13
+ $this->_init('sponsorship/sponsorshipopeninviter', 'sponsorship_openinviter_id');
14
+ }
15
+ }
app/code/community/Auguria/Sponsorship/Model/Mysql4/Sponsorshipopeninviter/Collection.php ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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_Mysql4_Sponsorshipopeninviter_Collection extends Mage_Core_Model_Mysql4_Collection_Abstract
9
+ {
10
+ public function _construct()
11
+ {
12
+ parent::_construct();
13
+ $this->_init('sponsorship/sponsorshipopeninviter');
14
+ }
15
+ }
app/code/community/Auguria/Sponsorship/Model/Observer.php CHANGED
@@ -337,7 +337,8 @@ class Auguria_Sponsorship_Model_Observer
337
  $controller = $observer['controller_action'];
338
  /*
339
  * Transmission de l'id du parrain + nom + prenom dans l'url
340
- * http://www.inkonso.com?sponsor_id=x&nom=xxx&prenom=xxx&email=xxx
 
341
  */
342
  $sponsorId = $controller->getRequest()->getParam('sponsor_id');
343
  if ($sponsorId!='')
@@ -345,7 +346,7 @@ class Auguria_Sponsorship_Model_Observer
345
  $nom = $controller->getRequest()->getParam('nom');
346
  $prenom = $controller->getRequest()->getParam('prenom');
347
  $email = $controller->getRequest()->getParam('email');
348
-
349
  //stockage des variables dans la session
350
  $session = Mage::getSingleton('core/session');
351
  $session->setData('sponsor_id',$sponsorId);
@@ -362,6 +363,8 @@ class Auguria_Sponsorship_Model_Observer
362
  $cookie->set('sponsorship_firstname', $prenom, $period);
363
  $cookie->set('sponsorship_lastname', $nom, $period);
364
  $cookie->set('sponsorship_email', $email, $period);
 
 
365
  }
366
  }
367
  }
337
  $controller = $observer['controller_action'];
338
  /*
339
  * Transmission de l'id du parrain + nom + prenom dans l'url
340
+ * base url / module / controller / action / parametres
341
+ * http://www.inkonso.com/cms/index/index/sponsor_id/x/nom/xxx/prenom/xxx/email/xxx
342
  */
343
  $sponsorId = $controller->getRequest()->getParam('sponsor_id');
344
  if ($sponsorId!='')
346
  $nom = $controller->getRequest()->getParam('nom');
347
  $prenom = $controller->getRequest()->getParam('prenom');
348
  $email = $controller->getRequest()->getParam('email');
349
+
350
  //stockage des variables dans la session
351
  $session = Mage::getSingleton('core/session');
352
  $session->setData('sponsor_id',$sponsorId);
363
  $cookie->set('sponsorship_firstname', $prenom, $period);
364
  $cookie->set('sponsorship_lastname', $nom, $period);
365
  $cookie->set('sponsorship_email', $email, $period);
366
+
367
+ $controller->getRequest()->setParam('sponsor_id', null);
368
  }
369
  }
370
  }
app/code/community/Auguria/Sponsorship/Model/Openinviter.php CHANGED
@@ -49,4 +49,23 @@ class Auguria_Sponsorship_Model_Openinviter
49
  {
50
  return $this->inviter->login($email_box, $password_box);
51
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
52
  }
49
  {
50
  return $this->inviter->login($email_box, $password_box);
51
  }
52
+
53
+ public function getPluginsArray()
54
+ {
55
+ $plugins = $this->getOpenIniviterPlugins();
56
+ $array = Array();
57
+ if (count($plugins))
58
+ foreach ($plugins as $type)
59
+ {
60
+ if (count($type))
61
+ foreach ($type as $code=>$plugin)
62
+ {
63
+ $name = $code;
64
+ if (isset($plugin['name']))
65
+ $name = $plugin['name'];
66
+ $array[] = array('value'=>$code, 'label'=>Mage::helper('sponsorship')->__($name));
67
+ }
68
+ }
69
+ return $array;
70
+ }
71
  }
app/code/community/Auguria/Sponsorship/Model/SocialBookmarking/Bookmarks.php ADDED
@@ -0,0 +1,61 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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_SocialBookmarking_Bookmarks extends Magentix_SocialBookmarking_Model_Bookmarks
9
+ {
10
+ public function _construct() {
11
+ Mage_Core_Model_Abstract::_construct();
12
+ $this->_init('socialbookmarking/bookmarks');
13
+ }
14
+
15
+ /* Return array with page informations : URL, bit.ly URL and Meta title */
16
+ public function getPageInfos() {
17
+ return array('url'=>$this->getPUrl(),'bitly'=>$this->getPBitly(),'title'=>$this->getPTitle());
18
+ }
19
+
20
+ /* Return page URL */
21
+ private function getPUrl()
22
+ {
23
+ $param = "";
24
+ if (Mage::getSingleton('customer/session')->getCustomerId())
25
+ $param = 'sponsor_id/'.Mage::getSingleton('customer/session')->getCustomerId().'/';
26
+
27
+ $id = Mage::getSingleton('customer/session')->getCustomerId();
28
+ return preg_replace(array('/\?___SID=U/'),array(''),Mage::getUrl('*/*/*', array('_current' => true, '_use_rewrite' => false)).$param);
29
+ }
30
+
31
+ /* Return page bit.ly URL */
32
+ private function getPBitly() {
33
+
34
+ $urls = Mage::getModel('socialbookmarking/urls')->getCollection()->addFieldToFilter('url',$this->getPUrl());
35
+ if(count($urls)) {
36
+ foreach($urls as $u) return $u->getBitly();
37
+ } else {
38
+ $config = Mage::getStoreConfig('socialbookmarking/bitly');
39
+
40
+ foreach($config as $c => $i) if(empty($i)) return $this->getPUrl();
41
+
42
+ $bitly = 'http://api.bit.ly/shorten?version='.$config['version'].'&longUrl='.urlencode($this->getPUrl()).'&login='.$config['login'].'&apiKey='.$config['key'];
43
+ if($response = @file_get_contents($bitly)) {
44
+ $json = json_decode($response,true);
45
+ if(isset($json['results']) && isset($json['results'][$this->getPUrl()]['shortUrl'])) {
46
+
47
+ $model = Mage::getModel('socialbookmarking/urls');
48
+ $model->setData('url',$this->getPUrl());
49
+ $model->setData('bitly',$json['results'][$this->getPUrl()]['shortUrl']);
50
+ $model->save();
51
+
52
+ return $json['results'][$this->getPUrl()]['shortUrl'];
53
+ } else {
54
+ return $this->getPUrl();
55
+ }
56
+ } else {
57
+ return $this->getPUrl();
58
+ }
59
+ }
60
+ }
61
+ }
app/code/community/Auguria/Sponsorship/Model/Sponsorshipopeninviter.php ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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_Sponsorshipopeninviter extends Mage_Core_Model_Abstract
9
+ {
10
+ public function _construct()
11
+ {
12
+ parent::_construct();
13
+ $this->_init('sponsorship/sponsorshipopeninviter');
14
+ }
15
+ }
app/code/community/Auguria/Sponsorship/controllers/Adminhtml/OpeninviterController.php ADDED
@@ -0,0 +1,211 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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_Adminhtml_OpeninviterController extends Mage_Adminhtml_Controller_action
9
+ {
10
+
11
+ protected function _initAction() {
12
+ $this->loadLayout()
13
+ ->_setActiveMenu('sponsorship/openinviter')
14
+ ->_addBreadcrumb(Mage::helper('adminhtml')->__('Items Manager'), Mage::helper('adminhtml')->__('Item Manager'));
15
+
16
+ return $this;
17
+ }
18
+
19
+ public function indexAction()
20
+ {
21
+ $this->_initAction()
22
+ ->renderLayout();
23
+ }
24
+
25
+ public function newAction()
26
+ {
27
+ $this->_forward('edit');
28
+ }
29
+
30
+ public function editAction() {
31
+ $id = $this->getRequest()->getParam('id');
32
+ $model = Mage::getModel('sponsorship/sponsorshipopeninviter')->load($id);
33
+
34
+ if ($model->getId() || $id == 0) {
35
+ $data = Mage::getSingleton('adminhtml/session')->getFormData(true);
36
+ if (!empty($data)) {
37
+ $model->setData($data);
38
+ }
39
+
40
+ Mage::register('openinviter_data', $model);
41
+
42
+ $this->loadLayout();
43
+ $this->_setActiveMenu('sponsorship/openinviter');
44
+
45
+ $this->_addBreadcrumb(Mage::helper('adminhtml')->__('Item Manager'), Mage::helper('adminhtml')->__('Item Manager'));
46
+ $this->_addBreadcrumb(Mage::helper('adminhtml')->__('Item News'), Mage::helper('adminhtml')->__('Item News'));
47
+
48
+ $this->getLayout()->getBlock('head')->setCanLoadExtJs(true);
49
+
50
+ $this->_addContent($this->getLayout()->createBlock('sponsorship/adminhtml_openinviter_edit'))
51
+ ->_addLeft($this->getLayout()->createBlock('sponsorship/adminhtml_openinviter_edit_tabs'));
52
+
53
+ $this->renderLayout();
54
+ } else {
55
+ Mage::getSingleton('adminhtml/session')->addError(Mage::helper('sponsorship')->__('Invitation does not exist'));
56
+ $this->_redirect('*/*/');
57
+ }
58
+ }
59
+
60
+ public function saveAction() {
61
+ if ($data = $this->getRequest()->getPost()) {
62
+
63
+ if(isset($_FILES['openinviterimage']['name']) && $_FILES['openinviterimage']['name'] != '') {
64
+ try {
65
+ /* Starting upload */
66
+ $uploader = new Varien_File_Uploader('openinviterimage');
67
+
68
+ // Any extention would work
69
+ $uploader->setAllowedExtensions(array('jpg','jpeg','gif','png'));
70
+ $uploader->setAllowRenameFiles(false);
71
+
72
+ $uploader->setFilesDispersion(false);
73
+
74
+ // We set media as the upload dir
75
+ $path = Mage::getBaseDir('media').DS.'sponsorship'.DS.'openinviter' ;
76
+ $uploader->save($path, $_FILES['openinviterimage']['name'] );
77
+
78
+ } catch (Exception $e) {
79
+
80
+ }
81
+
82
+ //this way the name is saved in DB
83
+ $data['image'] = 'sponsorship'.DS.'openinviter'.DS.$_FILES['openinviterimage']['name'];
84
+ }
85
+
86
+ if(isset($data['openinviterimage']['delete'])) $data['image'] = '';
87
+
88
+ $model = Mage::getModel('sponsorship/sponsorshipopeninviter');
89
+ $model->setData($data)
90
+ ->setId($this->getRequest()->getParam('id'));
91
+
92
+ try {
93
+ $model->save();
94
+ Mage::getSingleton('adminhtml/session')->addSuccess(Mage::helper('sponsorship')->__('Provider was successfully saved'));
95
+ Mage::getSingleton('adminhtml/session')->setFormData(false);
96
+
97
+ if ($this->getRequest()->getParam('back')) {
98
+ $this->_redirect('*/*/edit', array('id' => $model->getId()));
99
+ return;
100
+ }
101
+ $this->_redirect('*/*/');
102
+ return;
103
+ } catch (Exception $e) {
104
+ Mage::getSingleton('adminhtml/session')->addError($e->getMessage());
105
+ Mage::getSingleton('adminhtml/session')->setFormData($data);
106
+ $this->_redirect('*/*/edit', array('id' => $this->getRequest()->getParam('id')));
107
+ return;
108
+ }
109
+ }
110
+ Mage::getSingleton('adminhtml/session')->addError(Mage::helper('sponsorship')->__('Unable to find provider to save'));
111
+ $this->_redirect('*/*/');
112
+ }
113
+
114
+ public function deleteAction()
115
+ {
116
+ if ($this->getRequest()->getParam('id') > 0)
117
+ {
118
+ try
119
+ {
120
+ $model = Mage::getModel('sponsorship/sponsorshipopeninviter');
121
+ $model->setId($this->getRequest()->getParam('id'))->delete();
122
+
123
+ Mage::getSingleton('adminhtml/session')->addSuccess(Mage::helper('sponsorship')->__('Provider was successfully deleted'));
124
+ $this->_redirect('*/*/');
125
+ }
126
+ catch (Exception $e)
127
+ {
128
+ Mage::getSingleton('adminhtml/session')->addError($e->getMessage());
129
+ $this->_redirect('*/*/edit', array('id' => $this->getRequest()->getParam('id')));
130
+ }
131
+ }
132
+ $this->_redirect('*/*/');
133
+ }
134
+
135
+ public function massDeleteAction()
136
+ {
137
+ $providersIds = $this->getRequest()->getParam('openinviter');
138
+ if (!is_array($providersIds))
139
+ {
140
+ Mage::getSingleton('adminhtml/session')->addError(Mage::helper('sponsorship')->__('Please select provider(s)'));
141
+ }
142
+ else
143
+ {
144
+ try
145
+ {
146
+ foreach ($providersIds as $providerId)
147
+ {
148
+ $provider = Mage::getModel('sponsorship/sponsorshipopeninviter')->load($providerId);
149
+ $provider->delete();
150
+ }
151
+ Mage::getSingleton('adminhtml/session')->addSuccess(
152
+ Mage::helper('adminhtml')->__(
153
+ 'Total of %d record(s) were successfully deleted', count($providersIds)
154
+ )
155
+ );
156
+ }
157
+ catch (Exception $e)
158
+ {
159
+ Mage::getSingleton('adminhtml/session')->addError($e->getMessage());
160
+ }
161
+ }
162
+ $this->_redirect('*/*/index');
163
+ }
164
+
165
+ public function massStatusAction()
166
+ {
167
+ $providersIds = $this->getRequest()->getParam('openinviter');
168
+ if(!is_array($providersIds))
169
+ {
170
+ Mage::getSingleton('adminhtml/session')->addError($this->__('Please select provider(s)'));
171
+ }
172
+ else
173
+ {
174
+ try
175
+ {
176
+ foreach ($providersIds as $providerId)
177
+ {
178
+ $provider = Mage::getModel('sponsorship/sponsorshipopeninviter')->load($providerId)
179
+ ->load($providerId)
180
+ ->setStatus($this->getRequest()->getParam('status'))
181
+ ->setIsMassupdate(true)
182
+ ->save();
183
+ }
184
+ $this->_getSession()->addSuccess(
185
+ $this->__('Total of %d record(s) were successfully updated', count($providersIds))
186
+ );
187
+ }
188
+ catch (Exception $e)
189
+ {
190
+ $this->_getSession()->addError($e->getMessage());
191
+ }
192
+ }
193
+ $this->_redirect('*/*/index');
194
+ }
195
+
196
+ protected function _sendUploadResponse($fileName, $content, $contentType='application/octet-stream')
197
+ {
198
+ $response = $this->getResponse();
199
+ $response->setHeader('HTTP/1.1 200 OK','');
200
+ $response->setHeader('Pragma', 'public', true);
201
+ $response->setHeader('Cache-Control', 'must-revalidate, post-check=0, pre-check=0', true);
202
+ $response->setHeader('Content-Disposition', 'attachment; filename='.$fileName);
203
+ $response->setHeader('Last-Modified', date('r'));
204
+ $response->setHeader('Accept-Ranges', 'bytes');
205
+ $response->setHeader('Content-Length', strlen($content));
206
+ $response->setHeader('Content-type', $contentType);
207
+ $response->setBody($content);
208
+ $response->sendResponse();
209
+ die;
210
+ }
211
+ }
app/code/community/Auguria/Sponsorship/controllers/OpeninviterController.php CHANGED
@@ -33,6 +33,7 @@ class Auguria_Sponsorship_OpeninviterController extends Mage_Core_Controller_Fro
33
  $inviter = Mage::getModel('sponsorship/openinviter');
34
  $session = Mage::getSingleton('customer/session');
35
  $old_form = Mage::getSingleton('customer/session')->getData('openinviter_form');
 
36
  if (!isset($old_form))
37
  $old_form = array();
38
 
@@ -42,6 +43,12 @@ class Auguria_Sponsorship_OpeninviterController extends Mage_Core_Controller_Fro
42
  'step'=>'get_contacts'
43
  );
44
  $form = array_merge($old_form, $new_form);
 
 
 
 
 
 
45
  $session->setData('openinviter_form', $form);
46
 
47
  $this->loadLayout();
33
  $inviter = Mage::getModel('sponsorship/openinviter');
34
  $session = Mage::getSingleton('customer/session');
35
  $old_form = Mage::getSingleton('customer/session')->getData('openinviter_form');
36
+ mage::log(Mage::getSingleton('customer/session')->getData('openinviter_form'));
37
  if (!isset($old_form))
38
  $old_form = array();
39
 
43
  'step'=>'get_contacts'
44
  );
45
  $form = array_merge($old_form, $new_form);
46
+
47
+ if ($this->getRequest()->getParam('provider'))
48
+ {
49
+ $form = array_merge($form, array('provider_box'=>$this->getRequest()->getParam('provider')));
50
+ }
51
+
52
  $session->setData('openinviter_form', $form);
53
 
54
  $this->loadLayout();
app/code/community/Auguria/Sponsorship/etc/config.xml CHANGED
@@ -10,7 +10,7 @@
10
  <config>
11
  <modules>
12
  <Auguria_Sponsorship>
13
- <version>1.0.3</version>
14
  </Auguria_Sponsorship>
15
  </modules>
16
  <frontend>
@@ -70,23 +70,28 @@
70
  </invitations>
71
  <parrainages module="sponsorship">
72
  <title>Sponsorships list</title>
73
- <sort_order>0</sort_order>
74
  <action>sponsorship/adminhtml_link</action>
75
  </parrainages>
76
  <echanges module="sponsorship">
77
  <title>Points exchanges list</title>
78
- <sort_order>1</sort_order>
79
  <action>sponsorship/adminhtml_change</action>
80
  </echanges>
 
 
 
 
 
81
  </children>
82
  </sponsorship>
83
  </menu>
84
- <acl>
85
  <resources>
86
  <all>
87
  <title>Allow Everything</title>
88
  </all>
89
- <admin>
90
  <children>
91
  <system>
92
  <children>
@@ -112,6 +117,9 @@
112
  <echanges module="sponsorship">
113
  <title>Points exchanges list</title>
114
  </echanges>
 
 
 
115
  </children>
116
  </sponsorship>
117
  </children>
@@ -236,8 +244,17 @@
236
  <link>
237
  <table>sponsorship_change</table>
238
  </link>
 
 
 
239
  </entities>
240
  </sponsorship_mysql4>
 
 
 
 
 
 
241
  </models>
242
  <resources>
243
  <sponsorship_setup>
10
  <config>
11
  <modules>
12
  <Auguria_Sponsorship>
13
+ <version>1.0.4</version>
14
  </Auguria_Sponsorship>
15
  </modules>
16
  <frontend>
70
  </invitations>
71
  <parrainages module="sponsorship">
72
  <title>Sponsorships list</title>
73
+ <sort_order>1</sort_order>
74
  <action>sponsorship/adminhtml_link</action>
75
  </parrainages>
76
  <echanges module="sponsorship">
77
  <title>Points exchanges list</title>
78
+ <sort_order>2</sort_order>
79
  <action>sponsorship/adminhtml_change</action>
80
  </echanges>
81
+ <openinviter module="sponsorship">
82
+ <title>Open inviter providers</title>
83
+ <sort_order>3</sort_order>
84
+ <action>sponsorship/adminhtml_openinviter</action>
85
+ </openinviter>
86
  </children>
87
  </sponsorship>
88
  </menu>
89
+ <acl>
90
  <resources>
91
  <all>
92
  <title>Allow Everything</title>
93
  </all>
94
+ <admin>
95
  <children>
96
  <system>
97
  <children>
117
  <echanges module="sponsorship">
118
  <title>Points exchanges list</title>
119
  </echanges>
120
+ <openinviter module="sponsorship">
121
+ <title>Open inviter providers</title>
122
+ </openinviter>
123
  </children>
124
  </sponsorship>
125
  </children>
244
  <link>
245
  <table>sponsorship_change</table>
246
  </link>
247
+ <sponsorshipopeninviter>
248
+ <table>sponsorship_openinviter</table>
249
+ </sponsorshipopeninviter>
250
  </entities>
251
  </sponsorship_mysql4>
252
+ <!-- rewrite socialbookmarking url -->
253
+ <socialbookmarking>
254
+ <rewrite>
255
+ <bookmarks>Auguria_Sponsorship_Model_SocialBookmarking_Bookmarks</bookmarks>
256
+ </rewrite>
257
+ </socialbookmarking>
258
  </models>
259
  <resources>
260
  <sponsorship_setup>
app/code/community/Auguria/Sponsorship/etc/system.xml CHANGED
@@ -266,16 +266,15 @@
266
  </email_template_coupon>
267
  </fields>
268
  </change>
269
- <open_inviter translate="label">
270
- <label>Open Inviter options</label>
271
- <comment><![CDATA[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>]]></comment>
272
- OpenInviter - 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. available at <a href='openinviter.com'>http://openinviter.com</a>
273
  <sort_order>5</sort_order>
274
  <show_in_default>1</show_in_default>
275
  <show_in_website>1</show_in_website>
276
  <show_in_store>1</show_in_store>
277
  <fields>
278
  <open_inviter_enabled>
 
279
  <label>Activated</label>
280
  <frontend_type>select</frontend_type>
281
  <source_model>adminhtml/system_config_source_yesno</source_model>
@@ -294,7 +293,7 @@
294
  <show_in_store>1</show_in_store>
295
  </username>
296
  <private_key>
297
- <label>Private Kay</label>
298
  <frontend_type>text</frontend_type>
299
  <sort_order>3</sort_order>
300
  <show_in_default>1</show_in_default>
266
  </email_template_coupon>
267
  </fields>
268
  </change>
269
+ <open_inviter translate="label comment">
270
+ <label>Open Inviter options</label>
 
 
271
  <sort_order>5</sort_order>
272
  <show_in_default>1</show_in_default>
273
  <show_in_website>1</show_in_website>
274
  <show_in_store>1</show_in_store>
275
  <fields>
276
  <open_inviter_enabled>
277
+ <comment><![CDATA[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>]]></comment>
278
  <label>Activated</label>
279
  <frontend_type>select</frontend_type>
280
  <source_model>adminhtml/system_config_source_yesno</source_model>
293
  <show_in_store>1</show_in_store>
294
  </username>
295
  <private_key>
296
+ <label>Private Key</label>
297
  <frontend_type>text</frontend_type>
298
  <sort_order>3</sort_order>
299
  <show_in_default>1</show_in_default>
app/code/community/Auguria/Sponsorship/sql/sponsorship_setup/{mysql4-upgrade-0.1.9-0.1.10.php → mysql4-upgrade-0.1.10-0.1.11.php} RENAMED
File without changes
app/code/community/Auguria/Sponsorship/sql/sponsorship_setup/mysql4-upgrade-1.0.3-1.0.4.php ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ $installer = $this;
9
+
10
+ $installer->startSetup();
11
+
12
+ $installer->run("
13
+
14
+ CREATE TABLE IF NOT EXISTS {$this->getTable('sponsorship_openinviter')} (
15
+ `sponsorship_openinviter_id` int(11) unsigned NOT NULL auto_increment,
16
+ `code` varchar(255) NOT NULL,
17
+ `image` varchar(255) default NULL,
18
+ `name` varchar(255) default NULL,
19
+ `status` smallint(6) NOT NULL default '0',
20
+ PRIMARY KEY (`sponsorship_openinviter_id`)
21
+ ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
22
+ ");
23
+ $installer->endSetup();
app/design/adminhtml/default/default/layout/sponsorship.xml CHANGED
@@ -22,5 +22,10 @@
22
  <reference name="content">
23
  <block type="sponsorship/adminhtml_change" name="change" />
24
  </reference>
25
- </sponsorship_adminhtml_change_index>
 
 
 
 
 
26
  </layout>
22
  <reference name="content">
23
  <block type="sponsorship/adminhtml_change" name="change" />
24
  </reference>
25
+ </sponsorship_adminhtml_change_index>
26
+ <sponsorship_adminhtml_openinviter_index>
27
+ <reference name="content">
28
+ <block type="sponsorship/adminhtml_openinviter" name="openinviter" />
29
+ </reference>
30
+ </sponsorship_adminhtml_openinviter_index>
31
  </layout>
app/design/frontend/default/default/template/sponsorship/openinviter.phtml CHANGED
@@ -43,7 +43,7 @@
43
  <?php
44
  foreach ($oi_services as $type=>$providers)
45
  {
46
- echo "<optgroup label='{$oi_types[$type]}'>";
47
  foreach ($providers as $provider=>$details)
48
  echo "<option value='{$provider}'".($this->getOpenInviterProviderBox() == $provider ? 'selected' : '').">{$details['name']}</option>";
49
  echo "</optgroup>";
43
  <?php
44
  foreach ($oi_services as $type=>$providers)
45
  {
46
+ echo "<optgroup label='".$this->__($oi_types[$type])."'>";
47
  foreach ($providers as $provider=>$details)
48
  echo "<option value='{$provider}'".($this->getOpenInviterProviderBox() == $provider ? 'selected' : '').">{$details['name']}</option>";
49
  echo "</optgroup>";
app/design/frontend/default/default/template/sponsorship/sponsorship.phtml CHANGED
@@ -123,14 +123,34 @@
123
  * Open Inviter
124
  */
125
  if (Mage::getStoreConfig('sponsorship/open_inviter/open_inviter_enabled')==true): ?>
126
- <a href="<?php echo $this->getUrl('sponsorship/openinviter'); ?>" onclick='openPopup(this); return false'>
127
  <?php echo $this->__('Select recipients from your address book.')?>
128
- </a>
129
- &nbsp;<?php echo $this->__('Or add recipient manually.')?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
130
  <?php endif; ?>
131
-
132
  <ul class="form-list" id="recipient_options">
133
  </ul>
 
134
  <div id="max_recipient_message" style="display:none">
135
  <?php if ($this->getMaxRecipients()): ?>
136
  <?php echo $this->__('Maximum %d email addresses allowed.', $this->getMaxRecipients()) ?>
123
  * Open Inviter
124
  */
125
  if (Mage::getStoreConfig('sponsorship/open_inviter/open_inviter_enabled')==true): ?>
126
+ <p>
127
  <?php echo $this->__('Select recipients from your address book.')?>
128
+ <a href="<?php echo $this->getUrl('sponsorship/openinviter'); ?>" onclick='openPopup(this); return false'>
129
+ <?php echo $this->__('See all suported providers and process.')?>
130
+ </a>
131
+ </p>
132
+ <p class="openinviter-providers">
133
+ <?php
134
+ $providers = $this->getActiveProviders();
135
+ if (count($providers))
136
+ foreach ($providers as $provider):
137
+ ?>
138
+ <a href="<?php echo $this->getUrl('sponsorship/openinviter', array('provider'=>$provider->getCode())); ?>" onclick='openPopup(this); return false'>
139
+ <img src="<?php echo Mage::getBaseUrl('media').$provider->getImage(); ?>" alt="<?php echo $provider->getName(); ?>"/>
140
+ </a>
141
+ <?php endforeach; ?>
142
+ </p>
143
+ <p>
144
+ <?php echo $this->__('Or add recipient manually.')?>
145
+ </p>
146
+ <?php else: ?>
147
+ <p>
148
+ <?php echo $this->__('Add recipients.')?>
149
+ </p>
150
  <?php endif; ?>
 
151
  <ul class="form-list" id="recipient_options">
152
  </ul>
153
+
154
  <div id="max_recipient_message" style="display:none">
155
  <?php if ($this->getMaxRecipients()): ?>
156
  <?php echo $this->__('Maximum %d email addresses allowed.', $this->getMaxRecipients()) ?>
app/locale/fr_FR/Auguria_Sponsorship.csv CHANGED
@@ -182,7 +182,7 @@
182
  "Your points exchanges:","Vos échanges de points :"
183
  "Your request has been submitted, you will soon receive an email confirmation.","Votre demande a bien été transmise, vous recevrez bientôt un mail de confirmation."
184
  "You do not have yet send invit.","Vous n'avez pas encore envoyé d'invitation."
185
- "Select recipients from your address book.","Sélectionnez les destinataires dans votre carnet d'adresses."
186
  "Or add recipient manually.","Ou ajoutez vos destinataires manuellement."
187
  "Select your provider and sign in:","Sélectionnez votre fournisseur et identifiez vous :"
188
  "Your login:","Votre identifiant :"
@@ -198,3 +198,15 @@
198
  "Provider missing !","Il manque le fournisseur !"
199
  "Unable to get contacts !","Impossible de récupérer les contacts !"
200
  "An exception occured !","Une exception s'est produite !"
 
 
 
 
 
 
 
 
 
 
 
 
182
  "Your points exchanges:","Vos échanges de points :"
183
  "Your request has been submitted, you will soon receive an email confirmation.","Votre demande a bien été transmise, vous recevrez bientôt un mail de confirmation."
184
  "You do not have yet send invit.","Vous n'avez pas encore envoyé d'invitation."
185
+ "Select recipients from your address book.","Sélectionnez les destinataires à partir de votre carnet d'adresses."
186
  "Or add recipient manually.","Ou ajoutez vos destinataires manuellement."
187
  "Select your provider and sign in:","Sélectionnez votre fournisseur et identifiez vous :"
188
  "Your login:","Votre identifiant :"
198
  "Provider missing !","Il manque le fournisseur !"
199
  "Unable to get contacts !","Impossible de récupérer les contacts !"
200
  "An exception occured !","Une exception s'est produite !"
201
+ "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>"
202
+ "Activated","Activé"
203
+ "Choose your provider","Choisissez votre fournisseur"
204
+ "Email Providers","Fournisseurs de mails"
205
+ "Social Networks","Réseaux sociaux"
206
+ "Add recipients","Ajoutez les destinataires."
207
+ "Open inviter providers","Fournisseurs Open Inviter"
208
+ "Edition of the Open inviter provider '%s'","Edition du fournisseur Open inviter '%s'"
209
+ "Provider detail","Détail du fournisseur"
210
+ "Provider was successfully saved","Le fournisseur a bien été sauvegardé"
211
+ "Add a provider","Ajouter un fournisseur"
212
+ "Provider was successfully deleted","Le fournisseur a bien été effacé"
media/sponsorship/openinviter/logo_auguria.png ADDED
Binary file
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Auguria_Sponsorship</name>
4
- <version>1.0.3</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">OSL 3.0</license>
7
  <channel>community</channel>
@@ -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-06-17</date>
30
- <time>10:36:44</time>
31
- <contents><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="sponsorship.xml" hash="6e2160aad7460856353fe291d000a39c"/></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="41131e636284b1a2dcdbc79be86c6768"/><file name="sponsor_points.phtml" hash="a510e2612ffc9730644e21924603e190"/></dir><file name="dashboard.phtml" hash="b3c531f03302819338ebd9739b144d5f"/><file name="fidelitypointsdetail.phtml" hash="ac569b80b7dfda7412a265e88e51d403"/><file name="sponsorpointsdetail.phtml" hash="0a45d3ef02a05607ea46dedb631359c6"/></dir><dir name="form"><dir name="pointschange"><file name="pointschange_cash.phtml" hash="d181ffed79eec08a0a65e78e3aa731f8"/><file name="pointschange_coupon.phtml" hash="88870799ae481ba3a62209042aa4344d"/><file name="pointschange_gift.phtml" hash="29a244c931252894b98e1a9bf1c40fc4"/></dir><file name="boost.phtml" hash="c81f986b3a40771f9652a5b9f264ba20"/><file name="edit.phtml" hash="4a55e415cf16a47c584bcbbba570d8a5"/><file name="pointschange.phtml" hash="98fced0f1ac113b79e14521fea151afc"/><file name="register.phtml" hash="52b5e45974ecf7898851b2983c496297"/></dir><dir name="widget"><file name="name.phtml" hash="167d0c09817b6a786e017e54c7117a76"/><file name="virement.phtml" hash="275ebb5903affe9462a1307cec452053"/></dir></dir><file name="openinviter.phtml" hash="585bacec14882277c494fdeb341a36c6"/><file name="openinviterimport.phtml" hash="8e468750660c4b2556f4f1e1b50bfafb"/><file name="sponsorship.phtml" hash="9eb72b1beedb2f279d4b73bd24833559"/></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="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><file name="Change.php" hash="e5cd05ce0f684c462ec3b757982e0c97"/><file name="Link.php" hash="596e2a5247d5f8c1848cb612e15e68c0"/><file name="Sponsorship.php" hash="0ae7db005eaa0481735f41061bff5122"/></dir><dir name="Customer"><dir name="Account"><file name="PointsDetail.php" hash="365a9fc8dfc660fcef3dbbe0a131d289"/></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="3a6b5f091ead77d6ec136b84e1a77c7c"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="ChangeController.php" hash="73c1db83413cdf077562f8fb8d4bd8ec"/><file name="LinkController.php" hash="8f6c0efd94f22c15ffd2dd0f287a0e5e"/><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="7911af35af4a33da338f6d9db0f6b224"/><file name="IndexController.php" hash="e394a4d3f448e40f5461c16c80acefbf"/><file name="OpeninviterController.php" hash="fcc7b92fb34c01e2ddbde013688f80ab"/><file name="SponsorController.php" hash="b81147d898f8903d5167ab0eed14a8ed"/><file name="SponsorpointsController.php" hash="71a221400c548c44d73a4715078ec51a"/></dir><dir name="etc"><file name="config.xml" hash="dae2ab0f26f7f7b232807d8fd24c533d"/><file name="system.xml" hash="a816c0060972cf907bad0d604d82b23f"/></dir><dir name="Helper"><file name="Data.php" hash="10e2e7c3408665a07464cd6c20bf1550"/><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="71a7666b0a145aae1ac5413ff789973d"/><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="bb2f4d7d968bf43b4a9fad9ff52fd2ad"/><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="8b3ff7aefeb8d18a7199f6458ef89a16"/><file name="care2.plg.php" hash="c066e81973194cca90036c37c7740937"/><file name="clevergo.plg.php" hash="9bd12fea0eb7f60043bcdca9116cb1bc"/><file name="cyworld.plg.php" hash="1c960c9bb19897621dd4c26666dd5ae6"/><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="179983b943c1b96aa9421776eaecf991"/><file name="faces.plg.php" hash="f71786a835cf05eeec142b85df5a6baa"/><file name="famiva.plg.php" hash="eee1c0a9a6d645baf014245ca2e9c3e9"/><file name="fastmail.plg.php" hash="e90fc58235f2300042d7171bbeb8c8e3"/><file name="fdcareer.plg.php" hash="aad3d525fe09269de056f8ec03e43104"/><file name="flickr.plg.php" hash="217a5e6b3393253da0c32d256f52fe20"/><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="db1174c45ad0c35cce642a0dc1a825a1"/><file name="gmail.plg.php" hash="a4a288e002543c4e167a8ff4540b3ee0"/><file name="gmx_net.plg.php" hash="218b73370a1367455aeee09695bc4e2a"/><file name="graffiti.plg.php" hash="36f6a6f03fceb9b0e008c1a281a17eb2"/><file name="hi5.plg.php" hash="6fbabcad8d4c16eeb7374bbc27b8c979"/><file name="hotmail.plg.php" hash="3dece5995f04e557641c3ea0cea91cd9"/><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="12d71c803adf655dd865d9dd91fb1066"/><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="a911e588bc6e8b790dad186ba2221d0c"/><file name="meinvz.plg.php" hash="bdfc89d072c231e39d7e3dccf12b1a22"/><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="e4a780350ba171c890a84999a6389206"/><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="7b84d123a8be4cc8b0c11b8fd01a0e6e"/><file name="netaddress.plg.php" hash="8e2ccf82123f831b2616c8d3a80f579f"/><file name="netlog.plg.php" hash="dfb64b43a3954bfa5d01d34d2cba4d80"/><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="203f949a4e22b737de2003eb4d3c8af3"/><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="2a72cbe3e0c12ca123f00f2d113ba02e"/><file name="rediff.plg.php" hash="5679b17973310ecf1ba8b097d3acffaa"/><file name="sapo.plg.php" hash="2bd76d540c454da5f014eba59074e835"/><file name="skyrock.plg.php" hash="4d7497a380a839f28611a21ddea55a89"/><file name="tagged.plg.php" hash="d3ade2b837b7550a09d26d3bc1bd9823"/><file name="techemail.plg.php" hash="9894baf3c22e835dbcf62796327d9f99"/><file name="terra.plg.php" hash="094ae4ab8e63dd0f075a860c9aba2094"/><file name="twitter.plg.php" hash="13482b4ca74e66965a9e9233745b6316"/><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="2ff8238e6c1e4a08fbe3759d6e627ee8"/><file name="xuqa.plg.php" hash="1219e94f6ef0919025b2c93741e55fbd"/><file name="yahoo.plg.php" hash="50ed7830c0eada02daa7094ca26da87b"/><file name="yandex.plg.php" hash="922e9adc2a936bd6e83aaf331bb7c0b7"/><file name="youtube.plg.php" hash="fc05c436e6c2dd1c6c8fa336e7e893c5"/><file name="zapak.plg.php" hash="2274bd725d3bda8df0ae9d45d3ce1470"/><file name="_base.php" hash="5f7ba1cda90618b60ec44d9ea21afaa1"/><file name="_hosted.plg.php" hash="69514e56e1833df16884b6762bc620ce"/></dir><file name="autoupdate.php" hash="df781d645e37271f23432bb82b3360a2"/><file name="config.php" hash="214c7c6c115e1c8a21b9db03bfb9f64f"/><file name="LICENSE.txt" hash="277c3d400c7488e54746141297a952cb"/><file name="notifier.php" hash="88e3be687de995aae52a8ce248c49bce"/><file name="openinviter.php" hash="3f4ec8433193611284fd5fe2e91a3898"/><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="56bfee472079b2e70d87eb5242fa3d64"/></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><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"/></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="9e42dc3d73eb2e0437e92f61c398ccee"/><file name="Openinviter.php" hash="a9432b08bb82c513c5c3fcadb435b2f2"/><file name="Sponsorlog.php" hash="834b0e8e29eff5061abb18621a22ddb5"/><file name="Sponsorship.php" hash="acd91d3c6a6dbe801e7dde41a8d2fb06"/><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.9-0.1.10.php" hash="b29284b6cf0df556810ed3bdb47fd7dc"/></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="51a14efba142b3b94a2e0d3117db37c3"/></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></contents>
32
  <compatible/>
33
  <dependencies/>
34
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Auguria_Sponsorship</name>
4
+ <version>1.0.4</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">OSL 3.0</license>
7
  <channel>community</channel>
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-06-21</date>
30
+ <time>16:06:21</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="41131e636284b1a2dcdbc79be86c6768"/><file name="sponsor_points.phtml" hash="a510e2612ffc9730644e21924603e190"/></dir><file name="dashboard.phtml" hash="b3c531f03302819338ebd9739b144d5f"/><file name="fidelitypointsdetail.phtml" hash="ac569b80b7dfda7412a265e88e51d403"/><file name="sponsorpointsdetail.phtml" hash="0a45d3ef02a05607ea46dedb631359c6"/></dir><dir name="form"><dir name="pointschange"><file name="pointschange_cash.phtml" hash="d181ffed79eec08a0a65e78e3aa731f8"/><file name="pointschange_coupon.phtml" hash="88870799ae481ba3a62209042aa4344d"/><file name="pointschange_gift.phtml" hash="29a244c931252894b98e1a9bf1c40fc4"/></dir><file name="boost.phtml" hash="c81f986b3a40771f9652a5b9f264ba20"/><file name="edit.phtml" hash="4a55e415cf16a47c584bcbbba570d8a5"/><file name="pointschange.phtml" hash="98fced0f1ac113b79e14521fea151afc"/><file name="register.phtml" hash="52b5e45974ecf7898851b2983c496297"/></dir><dir name="widget"><file name="name.phtml" hash="167d0c09817b6a786e017e54c7117a76"/><file name="virement.phtml" hash="275ebb5903affe9462a1307cec452053"/></dir></dir><file name="openinviter.phtml" hash="184d0b3a71e0204cd02645bedc1c51e8"/><file name="openinviterimport.phtml" hash="8e468750660c4b2556f4f1e1b50bfafb"/><file name="sponsorship.phtml" hash="739958126e9bf04dbaf772ab3dde0d54"/></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="365a9fc8dfc660fcef3dbbe0a131d289"/></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="7911af35af4a33da338f6d9db0f6b224"/><file name="IndexController.php" hash="e394a4d3f448e40f5461c16c80acefbf"/><file name="OpeninviterController.php" hash="af603cc580fd7f6ea6507a43696b4edb"/><file name="SponsorController.php" hash="b81147d898f8903d5167ab0eed14a8ed"/><file name="SponsorpointsController.php" hash="71a221400c548c44d73a4715078ec51a"/></dir><dir name="etc"><file name="config.xml" hash="7d68a1700db09ce6df509bdca2e8b89a"/><file name="system.xml" hash="169c05a57f8aa8019435e9b425e0d5aa"/></dir><dir name="Helper"><file name="Data.php" hash="10e2e7c3408665a07464cd6c20bf1550"/><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="71a7666b0a145aae1ac5413ff789973d"/><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="bb2f4d7d968bf43b4a9fad9ff52fd2ad"/><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="8b3ff7aefeb8d18a7199f6458ef89a16"/><file name="care2.plg.php" hash="c066e81973194cca90036c37c7740937"/><file name="clevergo.plg.php" hash="9bd12fea0eb7f60043bcdca9116cb1bc"/><file name="cyworld.plg.php" hash="1c960c9bb19897621dd4c26666dd5ae6"/><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="179983b943c1b96aa9421776eaecf991"/><file name="faces.plg.php" hash="f71786a835cf05eeec142b85df5a6baa"/><file name="famiva.plg.php" hash="eee1c0a9a6d645baf014245ca2e9c3e9"/><file name="fastmail.plg.php" hash="e90fc58235f2300042d7171bbeb8c8e3"/><file name="fdcareer.plg.php" hash="aad3d525fe09269de056f8ec03e43104"/><file name="flickr.plg.php" hash="217a5e6b3393253da0c32d256f52fe20"/><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="db1174c45ad0c35cce642a0dc1a825a1"/><file name="gmail.plg.php" hash="a4a288e002543c4e167a8ff4540b3ee0"/><file name="gmx_net.plg.php" hash="218b73370a1367455aeee09695bc4e2a"/><file name="graffiti.plg.php" hash="36f6a6f03fceb9b0e008c1a281a17eb2"/><file name="hi5.plg.php" hash="6fbabcad8d4c16eeb7374bbc27b8c979"/><file name="hotmail.plg.php" hash="3dece5995f04e557641c3ea0cea91cd9"/><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="12d71c803adf655dd865d9dd91fb1066"/><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="a911e588bc6e8b790dad186ba2221d0c"/><file name="meinvz.plg.php" hash="bdfc89d072c231e39d7e3dccf12b1a22"/><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="e4a780350ba171c890a84999a6389206"/><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="7b84d123a8be4cc8b0c11b8fd01a0e6e"/><file name="netaddress.plg.php" hash="8e2ccf82123f831b2616c8d3a80f579f"/><file name="netlog.plg.php" hash="dfb64b43a3954bfa5d01d34d2cba4d80"/><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="203f949a4e22b737de2003eb4d3c8af3"/><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="2a72cbe3e0c12ca123f00f2d113ba02e"/><file name="rediff.plg.php" hash="5679b17973310ecf1ba8b097d3acffaa"/><file name="sapo.plg.php" hash="2bd76d540c454da5f014eba59074e835"/><file name="skyrock.plg.php" hash="4d7497a380a839f28611a21ddea55a89"/><file name="tagged.plg.php" hash="d3ade2b837b7550a09d26d3bc1bd9823"/><file name="techemail.plg.php" hash="9894baf3c22e835dbcf62796327d9f99"/><file name="terra.plg.php" hash="094ae4ab8e63dd0f075a860c9aba2094"/><file name="twitter.plg.php" hash="13482b4ca74e66965a9e9233745b6316"/><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="2ff8238e6c1e4a08fbe3759d6e627ee8"/><file name="xuqa.plg.php" hash="1219e94f6ef0919025b2c93741e55fbd"/><file name="yahoo.plg.php" hash="50ed7830c0eada02daa7094ca26da87b"/><file name="yandex.plg.php" hash="922e9adc2a936bd6e83aaf331bb7c0b7"/><file name="youtube.plg.php" hash="fc05c436e6c2dd1c6c8fa336e7e893c5"/><file name="zapak.plg.php" hash="2274bd725d3bda8df0ae9d45d3ce1470"/><file name="_base.php" hash="5f7ba1cda90618b60ec44d9ea21afaa1"/><file name="_hosted.plg.php" hash="69514e56e1833df16884b6762bc620ce"/></dir><file name="autoupdate.php" hash="df781d645e37271f23432bb82b3360a2"/><file name="config.php" hash="214c7c6c115e1c8a21b9db03bfb9f64f"/><file name="LICENSE.txt" hash="277c3d400c7488e54746141297a952cb"/><file name="notifier.php" hash="88e3be687de995aae52a8ce248c49bce"/><file name="openinviter.php" hash="3f4ec8433193611284fd5fe2e91a3898"/><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="56bfee472079b2e70d87eb5242fa3d64"/></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="Bookmarks.php" hash="a8d62f82406b08d3ba8d0e1874f0c717"/></dir><file name="AutoBoost.php" hash="5b2527368d08cade3495819a823ff8f7"/><file name="Bookmarks.php" hash="e4ec03129d8fa6aa30aa259a0ee302ce"/><file name="Change.php" hash="c4e3f0cd6077fab4ebc7e078d031fc3d"/><file name="Changestatut.php" hash="21106c8021072b8f8cf8419fec0ad0a9"/><file name="Fidelitylog.php" hash="1644dc508b0a1c4d06397a48509f652c"/><file name="Observer.php" hash="0c09c9c685ad6285fa7f8c642506e782"/><file name="Openinviter.php" hash="ccaf66522f8b8d7f17590bf2e5ec6d8f"/><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="986d23517fec3b5431639f2ae65d380e"/></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>