Lexity_Live - Version 1.3.1

Version Notes

Stable

Download this release

Release Info

Developer Lexity
Extension Lexity_Live
Version 1.3.1
Comparing to
See all releases


Code changes from version 1.3.0 to 1.3.1

app/code/local/LexityLive/Block/Credentials/Form/Edit.php CHANGED
@@ -11,24 +11,6 @@ class LexityLive_Block_Credentials_Form_Edit extends Mage_Adminhtml_Block_Widget
11
  $this->_removeButton('reset')
12
  ->_removeButton('back')
13
  ->_removeButton('save');
14
-
15
-
16
- // $this->_blockGroup = ‘form’; and $this->_controller = ‘adminhtml_form’;
17
- // There two variables are very important, these variables are used to find
18
- // FORM tabs php file. i.e the path of the form tabs php should be
19
- // {$this->_blockGroup . ‘/’ . $this->_controller . ‘_’ . $this->_mode . ‘_form’}.
20
- // The value of $this->_mode by default is ‘edit’. So the path of the php file which
21
- // contains the form tag in our case would be ‘form/adminhtml_form_edit_form’.
22
-
23
- // $this->_updateButton('save', 'label', Mage::helper('lexitylive')->__('Save'));
24
- // $this->_updateButton('delete', 'label', Mage::helper('lexitylive')->__('Delete'));
25
-
26
- // $this->_addButton('saveandcontinue', array(
27
- // 'label' => Mage::helper('adminhtml')->__('Save And Continue Edit'),
28
- // 'onclick' => 'saveAndContinueEdit()',
29
- // 'class' => 'save',
30
- // ), -100);
31
-
32
  }
33
 
34
  public function getHeaderText() {
@@ -36,9 +18,6 @@ class LexityLive_Block_Credentials_Form_Edit extends Mage_Adminhtml_Block_Widget
36
  return Mage::helper('lexitylive')->__('Account Information');
37
  }
38
 
39
-
40
-
41
-
42
  }
43
 
44
- ?>
11
  $this->_removeButton('reset')
12
  ->_removeButton('back')
13
  ->_removeButton('save');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  }
15
 
16
  public function getHeaderText() {
18
  return Mage::helper('lexitylive')->__('Account Information');
19
  }
20
 
 
 
 
21
  }
22
 
23
+ ?>
app/code/local/LexityLive/Block/Credentials/Form/Edit/Tab/Form.php CHANGED
@@ -14,13 +14,7 @@ class LexityLive_Block_Credentials_Form_Edit_Tab_Form extends Mage_Adminhtml_Blo
14
  'class' => 'required-entry',
15
  'required' => true,
16
  'name' => 'email',
17
- // 'onclick' => "alert('on click');",
18
- // 'onchange' => "alert('on change');",
19
- // 'style' => "border:10px",
20
  'value' => Mage::getSingleton('admin/session')->getUser()->getEmail(),
21
- // 'disabled' => false,
22
- // 'readonly' => false,
23
- // 'after_element_html' => '<small>Comments</small>',
24
  'tabindex' => 1
25
  ));
26
  Mage::log('Lexity: addfield email');
@@ -29,12 +23,6 @@ class LexityLive_Block_Credentials_Form_Edit_Tab_Form extends Mage_Adminhtml_Blo
29
  'class' => 'required-entry',
30
  'required' => true,
31
  'name' => 'password',
32
- // 'onclick' => "",
33
- // 'onchange' => "",
34
- // 'style' => 'border:10px',
35
- // 'value' => 'hello !!',
36
- // 'disabled' => false,
37
- // 'readonly' => false,
38
  'after_element_html' => '<small>This is your Lexity account password</small>',
39
  'tabindex' => 2
40
  ));
@@ -44,24 +32,16 @@ class LexityLive_Block_Credentials_Form_Edit_Tab_Form extends Mage_Adminhtml_Blo
44
  'class' => 'required-entry',
45
  'required' => true,
46
  'name' => 'domain',
47
- // 'onclick' => "alert('on click');",
48
- // 'onchange' => "alert('on change');",
49
- // 'style' => 'border:10px',
50
  'value' => Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_WEB),
51
- // 'disabled' => false,
52
  'readonly' => true,
53
- // 'after_element_html' => '<small>Comments</small>',
54
  'tabindex' => 3
55
  ));
56
  Mage::log('Lexity: addfield domain');
57
  $fieldset->addField('submit', 'submit', array(
58
- // 'label' => Mage::helper('lexitylive')->__('Create Account'),
59
- // 'required' => true,
60
  'value' => 'Create Account',
61
- // 'after_element_html' => '<small>Comments</small>',
62
  'tabindex' => 4
63
  ));
64
  Mage::log('Lexity: addfield submit');
65
  return parent::_prepareForm();
66
  }
67
- }
14
  'class' => 'required-entry',
15
  'required' => true,
16
  'name' => 'email',
 
 
 
17
  'value' => Mage::getSingleton('admin/session')->getUser()->getEmail(),
 
 
 
18
  'tabindex' => 1
19
  ));
20
  Mage::log('Lexity: addfield email');
23
  'class' => 'required-entry',
24
  'required' => true,
25
  'name' => 'password',
 
 
 
 
 
 
26
  'after_element_html' => '<small>This is your Lexity account password</small>',
27
  'tabindex' => 2
28
  ));
32
  'class' => 'required-entry',
33
  'required' => true,
34
  'name' => 'domain',
 
 
 
35
  'value' => Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_WEB),
 
36
  'readonly' => true,
 
37
  'tabindex' => 3
38
  ));
39
  Mage::log('Lexity: addfield domain');
40
  $fieldset->addField('submit', 'submit', array(
 
 
41
  'value' => 'Create Account',
 
42
  'tabindex' => 4
43
  ));
44
  Mage::log('Lexity: addfield submit');
45
  return parent::_prepareForm();
46
  }
47
+ }
app/code/local/LexityLive/Block/Credentials/Form/Edit/Tabs.php CHANGED
@@ -20,4 +20,4 @@ class LexityLive_Block_Credentials_Form_Edit_Tabs extends Mage_Adminhtml_Block_W
20
 
21
  return parent::_beforeToHtml();
22
  }
23
- }
20
 
21
  return parent::_beforeToHtml();
22
  }
23
+ }
app/code/local/LexityLive/Block/Embed.php CHANGED
@@ -7,4 +7,4 @@ class LexityLive_Block_Embed extends Mage_Adminhtml_Block_Template
7
  $this->setTemplate('lexitylive/embed.phtml');
8
  }
9
  }
10
- ?>
7
  $this->setTemplate('lexitylive/embed.phtml');
8
  }
9
  }
10
+ ?>
app/design/adminhtml/default/default/template/lexitylive/embed.phtml CHANGED
@@ -1,5 +1,4 @@
1
  <?php
2
- // $uri = Mage::getModel('lexitylive/core')->get_lexity_login_url(urlencode('admin/live?embed=true'));
3
  $url = Mage::registry('embed_url')
4
  ?>
5
 
1
  <?php
 
2
  $url = Mage::registry('embed_url')
3
  ?>
4
 
package.xml CHANGED
@@ -1,18 +1,22 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Lexity_Live</name>
4
- <version>1.3.0</version>
5
  <stability>stable</stability>
6
  <license>BSD License</license>
7
  <channel>community</channel>
8
  <extends/>
9
- <summary>TBW</summary>
10
- <description>TBW</description>
 
 
 
 
11
  <notes>Stable</notes>
12
  <authors><author><name>Lexity</name><user>lexity</user><email>support@lexity.com</email></author></authors>
13
- <date>2013-02-28</date>
14
- <time>22:38:43</time>
15
- <contents><target name="magelocal"><dir name="LexityLive"><dir name="Block"><dir name="Credentials"><dir name="Form"><dir name="Edit"><file name="Form.php" hash="b20058385d1974f6daedd2893f50098b"/><dir name="Tab"><file name="Form.php" hash="aa8753330bed3a6e96a19cc8a29a8834"/></dir><file name="Tabs.php" hash="8a9fd510259ab78ffcf0bd8bdc646d09"/></dir><file name="Edit.php" hash="40cb907dd77c353e1ba2aec9a1774bf0"/></dir></dir><file name="Embed.php" hash="389dfb1d5f5f6d56727355440b328f61"/></dir><dir name="Helper"><file name="Data.php" hash="81b07c4eb066f3f6ca74ac7f288ea3d1"/></dir><dir name="Model"><dir name="Core"><file name="Api.php" hash="0ca1f11c4dbd825832c0141d0a8103bf"/></dir><file name="Core.php" hash="7448fbd8dcc7296108e79e38af597cac"/><dir name="Order"><file name="Api.php" hash="793c3381f2b330162edff20d032aa87a"/></dir></dir><dir name="controllers"><file name="MarketingController.php" hash="0fccf277778b923a1101fb54bd7b8dd3"/></dir><dir name="etc"><file name="api.xml" hash="2839f8ced7d210be5d75616876de301b"/><file name="config.xml" hash="8a3987f8fd91f852f1813990c88b7e8d"/></dir></dir></target><target name="mageetc"><dir name="modules"><file name="LexityLive.xml" hash="90f47f9fefe55580e1e77f118100c3a1"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="lexitylive"><file name="credentials.phtml" hash="2b19db0cf4ba77c5b92bf2f4179f462b"/><file name="embed.phtml" hash="0d60bf2559aa2c8084725f6fd0a4c3be"/></dir></dir></dir></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Lexity_Live</name>
4
+ <version>1.3.1</version>
5
  <stability>stable</stability>
6
  <license>BSD License</license>
7
  <channel>community</channel>
8
  <extends/>
9
+ <summary>Monitor your customer activity in real time&#xD;
10
+ &#xD;
11
+ Lexity Live is a free website traffic analysis tool designed for ecommerce, with real time visitor tracking and much more. Other tools like Google Analytics can take hours to process data, too late for you to react. With Lexity Live, real time information about current site visitors lets you watch your customers browse your website and go from checkout to purchase, all as it happens.</summary>
12
+ <description>Get smart, actionable marketing insights&#xD;
13
+ &#xD;
14
+ Find out your top keywords, top referring sites, and more at a glance with Lexity Live Insights. Lexity Live Insights automatically analyzes your store visit data and summarizes it into clear, simple takeaways so you get smart and actionable marketing recommendations.</description>
15
  <notes>Stable</notes>
16
  <authors><author><name>Lexity</name><user>lexity</user><email>support@lexity.com</email></author></authors>
17
+ <date>2013-03-05</date>
18
+ <time>19:15:51</time>
19
+ <contents><target name="magelocal"><dir name="LexityLive"><dir name="Block"><dir name="Credentials"><dir name="Form"><dir name="Edit"><file name="Form.php" hash="b20058385d1974f6daedd2893f50098b"/><dir name="Tab"><file name="Form.php" hash="866003a7e71db8f8d50bc408bf36b6f9"/></dir><file name="Tabs.php" hash="241d7d1d600e17fcbcb18935e23c4f65"/></dir><file name="Edit.php" hash="bbfe316a81e6ec669f05adb637e10732"/></dir></dir><file name="Embed.php" hash="a59f226f8050ce73e8bb40de2cdb4290"/></dir><dir name="Helper"><file name="Data.php" hash="81b07c4eb066f3f6ca74ac7f288ea3d1"/></dir><dir name="Model"><dir name="Core"><file name="Api.php" hash="0ca1f11c4dbd825832c0141d0a8103bf"/></dir><file name="Core.php" hash="7448fbd8dcc7296108e79e38af597cac"/><dir name="Order"><file name="Api.php" hash="793c3381f2b330162edff20d032aa87a"/></dir></dir><dir name="controllers"><file name="MarketingController.php" hash="0fccf277778b923a1101fb54bd7b8dd3"/></dir><dir name="etc"><file name="api.xml" hash="2839f8ced7d210be5d75616876de301b"/><file name="config.xml" hash="8a3987f8fd91f852f1813990c88b7e8d"/></dir></dir></target><target name="mageetc"><dir name="modules"><file name="LexityLive.xml" hash="90f47f9fefe55580e1e77f118100c3a1"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="lexitylive"><file name="credentials.phtml" hash="2b19db0cf4ba77c5b92bf2f4179f462b"/><file name="embed.phtml" hash="da1d6ab67226389dfdcd186ecbe376fd"/></dir></dir></dir></dir></dir></target></contents>
20
  <compatible/>
21
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
22
  </package>