Version Notes
Fresh module
Download this release
Release Info
| Developer | Commerce Pundit |
| Extension | CP_Feed |
| Version | 0.0.2 |
| Comparing to | |
| See all releases | |
Code changes from version 0.0.1 to 0.0.2
- app/code/community/CP/Feed/Block/Adminhtml/Config/Form/Renderer/Website.php +1 -1
- app/code/community/CP/Feed/Block/Adminhtml/Items.php +1 -1
- app/code/community/CP/Feed/Block/Adminhtml/Items/Edit.php +3 -3
- app/code/community/CP/Feed/Block/Adminhtml/Items/Edit/Form.php +1 -1
- app/code/community/CP/Feed/Block/Adminhtml/Items/Edit/Tab/Advanced.php +1 -1
- app/code/community/CP/Feed/Block/Adminhtml/Items/Edit/Tab/Content/Csv.php +1 -1
- app/code/community/CP/Feed/Block/Adminhtml/Items/Edit/Tab/Content/Productcategory.php +1 -1
- app/code/community/CP/Feed/Block/Adminhtml/Items/Edit/Tab/Main.php +1 -1
- app/code/community/CP/Feed/Block/Adminhtml/Items/Edit/Tab/Type.php +1 -1
- app/code/community/CP/Feed/Block/Adminhtml/Items/Edit/Tabs.php +1 -1
- app/code/community/CP/Feed/Block/Adminhtml/Items/Grid.php +3 -3
- app/code/community/CP/Feed/Block/Adminhtml/Items/Grid/Renderer/AccessUrl.php +1 -1
- app/code/community/CP/Feed/Block/Adminhtml/Items/Grid/Renderer/Datetime.php +2 -1
- app/code/community/CP/Feed/Helper/Data.php +2 -2
- app/code/community/CP/Feed/Model/Adminhtml/System/Config/Source/Store.php +1 -1
- app/code/community/CP/Feed/Model/Custom/Attribute.php +1 -1
- app/code/community/CP/Feed/Model/Item.php +1 -1
- app/code/community/CP/Feed/Model/Item/Block.php +6 -6
- app/code/community/CP/Feed/Model/Item/Block/Category.php +1 -1
- app/code/community/CP/Feed/Model/Item/Block/Product.php +1 -1
- app/code/community/CP/Feed/Model/Mysql4/Custom/Attribute.php +1 -1
- app/code/community/CP/Feed/Model/Mysql4/Custom/Attribute/Collection.php +1 -1
- app/code/community/CP/Feed/Model/Mysql4/Item.php +1 -1
- app/code/community/CP/Feed/Model/Mysql4/Item/Collection.php +1 -1
- app/code/community/CP/Feed/Model/Observer.php +3 -3
- app/code/community/CP/Feed/Model/Option/Productcategories.php +1 -1
- app/code/community/CP/Feed/Model/Product/Collection.php +1 -1
- app/code/community/CP/Feed/controllers/Adminhtml/ItemsController.php +5 -5
- app/code/community/CP/Feed/controllers/IndexController.php +1 -1
- app/code/community/CP/Feed/etc/config.xml +13 -13
- app/etc/modules/{Cp_Feed.xml → CP_Feed.xml} +2 -2
- package.xml +6 -6
app/code/community/CP/Feed/Block/Adminhtml/Config/Form/Renderer/Website.php
CHANGED
|
@@ -19,7 +19,7 @@
|
|
| 19 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 20 |
*/
|
| 21 |
|
| 22 |
-
class
|
| 23 |
{
|
| 24 |
|
| 25 |
protected function _getElementHtml(Varien_Data_Form_Element_Abstract $element)
|
| 19 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 20 |
*/
|
| 21 |
|
| 22 |
+
class CP_Feed_Block_Adminhtml_Config_Form_Renderer_Website extends Mage_Adminhtml_Block_System_Config_Form_Field
|
| 23 |
{
|
| 24 |
|
| 25 |
protected function _getElementHtml(Varien_Data_Form_Element_Abstract $element)
|
app/code/community/CP/Feed/Block/Adminhtml/Items.php
CHANGED
|
@@ -19,7 +19,7 @@
|
|
| 19 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 20 |
*/
|
| 21 |
|
| 22 |
-
class
|
| 23 |
{
|
| 24 |
public function __construct()
|
| 25 |
{
|
| 19 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 20 |
*/
|
| 21 |
|
| 22 |
+
class CP_Feed_Block_Adminhtml_Items extends Mage_Adminhtml_Block_Widget_Grid_Container
|
| 23 |
{
|
| 24 |
public function __construct()
|
| 25 |
{
|
app/code/community/CP/Feed/Block/Adminhtml/Items/Edit.php
CHANGED
|
@@ -19,7 +19,7 @@
|
|
| 19 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 20 |
*/
|
| 21 |
|
| 22 |
-
class
|
| 23 |
{
|
| 24 |
|
| 25 |
public function __construct()
|
|
@@ -103,7 +103,7 @@ class Cp_Feed_Block_Adminhtml_Items_Edit extends Mage_Adminhtml_Block_Widget_For
|
|
| 103 |
|
| 104 |
$_data = array();
|
| 105 |
|
| 106 |
-
$_data['data'] =
|
| 107 |
|
| 108 |
$_data['url'] = $this->getUrl('*/*/mappingimportsection', array(
|
| 109 |
'id' => ($feed && $feed->getId() ? $feed->getId() : 0)
|
|
@@ -121,7 +121,7 @@ class Cp_Feed_Block_Adminhtml_Items_Edit extends Mage_Adminhtml_Block_Widget_For
|
|
| 121 |
|
| 122 |
|
| 123 |
|
| 124 |
-
var
|
| 125 |
|
| 126 |
|
| 127 |
|
| 19 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 20 |
*/
|
| 21 |
|
| 22 |
+
class CP_Feed_Block_Adminhtml_Items_Edit extends Mage_Adminhtml_Block_Widget_Form_Container
|
| 23 |
{
|
| 24 |
|
| 25 |
public function __construct()
|
| 103 |
|
| 104 |
$_data = array();
|
| 105 |
|
| 106 |
+
$_data['data'] = CP_Feed_Block_Adminhtml_Items_Edit_Tab_Content_Csv::getSystemSections();
|
| 107 |
|
| 108 |
$_data['url'] = $this->getUrl('*/*/mappingimportsection', array(
|
| 109 |
'id' => ($feed && $feed->getId() ? $feed->getId() : 0)
|
| 121 |
|
| 122 |
|
| 123 |
|
| 124 |
+
var CPFeedAdmin = new CPFeedAdminSettings(" . Zend_Json::encode($_data) . ");
|
| 125 |
|
| 126 |
|
| 127 |
|
app/code/community/CP/Feed/Block/Adminhtml/Items/Edit/Form.php
CHANGED
|
@@ -19,7 +19,7 @@
|
|
| 19 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 20 |
*/
|
| 21 |
|
| 22 |
-
class
|
| 23 |
|
| 24 |
|
| 25 |
|
| 19 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 20 |
*/
|
| 21 |
|
| 22 |
+
class CP_Feed_Block_Adminhtml_Items_Edit_Form extends Mage_Adminhtml_Block_Widget_Form{
|
| 23 |
|
| 24 |
|
| 25 |
|
app/code/community/CP/Feed/Block/Adminhtml/Items/Edit/Tab/Advanced.php
CHANGED
|
@@ -19,7 +19,7 @@
|
|
| 19 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 20 |
*/
|
| 21 |
|
| 22 |
-
class
|
| 23 |
{
|
| 24 |
|
| 25 |
protected function _prepareForm()
|
| 19 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 20 |
*/
|
| 21 |
|
| 22 |
+
class CP_Feed_Block_Adminhtml_Items_Edit_Tab_Advanced extends Mage_Adminhtml_Block_Widget_Form
|
| 23 |
{
|
| 24 |
|
| 25 |
protected function _prepareForm()
|
app/code/community/CP/Feed/Block/Adminhtml/Items/Edit/Tab/Content/Csv.php
CHANGED
|
@@ -19,7 +19,7 @@
|
|
| 19 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 20 |
*/
|
| 21 |
|
| 22 |
-
class
|
| 23 |
{
|
| 24 |
|
| 25 |
protected $attribute_collection;
|
| 19 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 20 |
*/
|
| 21 |
|
| 22 |
+
class CP_Feed_Block_Adminhtml_Items_Edit_Tab_Content_Csv extends Mage_Adminhtml_Block_Template
|
| 23 |
{
|
| 24 |
|
| 25 |
protected $attribute_collection;
|
app/code/community/CP/Feed/Block/Adminhtml/Items/Edit/Tab/Content/Productcategory.php
CHANGED
|
@@ -19,7 +19,7 @@
|
|
| 19 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 20 |
*/
|
| 21 |
|
| 22 |
-
class
|
| 23 |
{
|
| 24 |
public function __construct() {
|
| 25 |
parent::__construct();
|
| 19 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 20 |
*/
|
| 21 |
|
| 22 |
+
class CP_Feed_Block_Adminhtml_Items_Edit_Tab_Content_Productcategory extends Mage_Adminhtml_Block_Catalog_Product_Edit_Tab_Categories
|
| 23 |
{
|
| 24 |
public function __construct() {
|
| 25 |
parent::__construct();
|
app/code/community/CP/Feed/Block/Adminhtml/Items/Edit/Tab/Main.php
CHANGED
|
@@ -19,7 +19,7 @@
|
|
| 19 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 20 |
*/
|
| 21 |
|
| 22 |
-
class
|
| 23 |
{
|
| 24 |
|
| 25 |
|
| 19 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 20 |
*/
|
| 21 |
|
| 22 |
+
class CP_Feed_Block_Adminhtml_Items_Edit_Tab_Main extends Mage_Adminhtml_Block_Widget_Form
|
| 23 |
{
|
| 24 |
|
| 25 |
|
app/code/community/CP/Feed/Block/Adminhtml/Items/Edit/Tab/Type.php
CHANGED
|
@@ -19,7 +19,7 @@
|
|
| 19 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 20 |
*/
|
| 21 |
|
| 22 |
-
class
|
| 23 |
{
|
| 24 |
|
| 25 |
|
| 19 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 20 |
*/
|
| 21 |
|
| 22 |
+
class CP_Feed_Block_Adminhtml_Items_Edit_Tab_Type extends Mage_Adminhtml_Block_Widget_Form
|
| 23 |
{
|
| 24 |
|
| 25 |
|
app/code/community/CP/Feed/Block/Adminhtml/Items/Edit/Tabs.php
CHANGED
|
@@ -19,7 +19,7 @@
|
|
| 19 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 20 |
*/
|
| 21 |
|
| 22 |
-
class
|
| 23 |
{
|
| 24 |
|
| 25 |
public function __construct()
|
| 19 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 20 |
*/
|
| 21 |
|
| 22 |
+
class CP_Feed_Block_Adminhtml_Items_Edit_Tabs extends Mage_Adminhtml_Block_Widget_Tabs
|
| 23 |
{
|
| 24 |
|
| 25 |
public function __construct()
|
app/code/community/CP/Feed/Block/Adminhtml/Items/Grid.php
CHANGED
|
@@ -19,7 +19,7 @@
|
|
| 19 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 20 |
*/
|
| 21 |
|
| 22 |
-
class
|
| 23 |
{
|
| 24 |
|
| 25 |
public function __construct()
|
|
@@ -87,7 +87,7 @@ class Cp_Feed_Block_Adminhtml_Items_Grid extends Mage_Adminhtml_Block_Widget_Gri
|
|
| 87 |
|
| 88 |
'index' => 'filename',
|
| 89 |
|
| 90 |
-
'renderer' => '
|
| 91 |
|
| 92 |
));
|
| 93 |
|
|
@@ -101,7 +101,7 @@ class Cp_Feed_Block_Adminhtml_Items_Grid extends Mage_Adminhtml_Block_Widget_Gri
|
|
| 101 |
|
| 102 |
'type' => 'datetime',
|
| 103 |
|
| 104 |
-
'renderer' => '
|
| 105 |
|
| 106 |
));
|
| 107 |
|
| 19 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 20 |
*/
|
| 21 |
|
| 22 |
+
class CP_Feed_Block_Adminhtml_Items_Grid extends Mage_Adminhtml_Block_Widget_Grid
|
| 23 |
{
|
| 24 |
|
| 25 |
public function __construct()
|
| 87 |
|
| 88 |
'index' => 'filename',
|
| 89 |
|
| 90 |
+
'renderer' => 'CP_Feed_Block_Adminhtml_Items_Grid_Renderer_AccessUrl'
|
| 91 |
|
| 92 |
));
|
| 93 |
|
| 101 |
|
| 102 |
'type' => 'datetime',
|
| 103 |
|
| 104 |
+
'renderer' => 'CP_Feed_Block_Adminhtml_Items_Grid_Renderer_Datetime'
|
| 105 |
|
| 106 |
));
|
| 107 |
|
app/code/community/CP/Feed/Block/Adminhtml/Items/Grid/Renderer/AccessUrl.php
CHANGED
|
@@ -19,7 +19,7 @@
|
|
| 19 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 20 |
*/
|
| 21 |
|
| 22 |
-
class
|
| 23 |
|
| 24 |
|
| 25 |
|
| 19 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 20 |
*/
|
| 21 |
|
| 22 |
+
class CP_Feed_Block_Adminhtml_Items_Grid_Renderer_AccessUrl extends Mage_Adminhtml_Block_Widget_Grid_Column_Renderer_Abstract{
|
| 23 |
|
| 24 |
|
| 25 |
|
app/code/community/CP/Feed/Block/Adminhtml/Items/Grid/Renderer/Datetime.php
CHANGED
|
@@ -18,7 +18,8 @@
|
|
| 18 |
* @author <<Niranjan Gondaliya>>
|
| 19 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 20 |
*/
|
| 21 |
-
|
|
|
|
| 22 |
|
| 23 |
|
| 24 |
|
| 18 |
* @author <<Niranjan Gondaliya>>
|
| 19 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 20 |
*/
|
| 21 |
+
|
| 22 |
+
class CP_Feed_Block_Adminhtml_Items_Grid_Renderer_Datetime extends Mage_Adminhtml_Block_Widget_Grid_Column_Renderer_Datetime{
|
| 23 |
|
| 24 |
|
| 25 |
|
app/code/community/CP/Feed/Helper/Data.php
CHANGED
|
@@ -18,8 +18,8 @@
|
|
| 18 |
* @author <<Niranjan Gondaliya>>
|
| 19 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 20 |
*/
|
| 21 |
-
|
| 22 |
-
class
|
| 23 |
|
| 24 |
public function getConfigData($node){
|
| 25 |
return Mage::getStoreConfig('cp_feed/'.$node);
|
| 18 |
* @author <<Niranjan Gondaliya>>
|
| 19 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 20 |
*/
|
| 21 |
+
|
| 22 |
+
class CP_Feed_Helper_Data extends Mage_Core_Helper_Abstract{
|
| 23 |
|
| 24 |
public function getConfigData($node){
|
| 25 |
return Mage::getStoreConfig('cp_feed/'.$node);
|
app/code/community/CP/Feed/Model/Adminhtml/System/Config/Source/Store.php
CHANGED
|
@@ -19,7 +19,7 @@
|
|
| 19 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 20 |
*/
|
| 21 |
|
| 22 |
-
class
|
| 23 |
{
|
| 24 |
|
| 25 |
}
|
| 19 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 20 |
*/
|
| 21 |
|
| 22 |
+
class CP_Feed_Model_Adminhtml_System_Config_Source_Store extends Mage_Adminhtml_Model_System_Store
|
| 23 |
{
|
| 24 |
|
| 25 |
}
|
app/code/community/CP/Feed/Model/Custom/Attribute.php
CHANGED
|
@@ -19,7 +19,7 @@
|
|
| 19 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 20 |
*/
|
| 21 |
|
| 22 |
-
class
|
| 23 |
|
| 24 |
{
|
| 25 |
|
| 19 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 20 |
*/
|
| 21 |
|
| 22 |
+
class CP_Feed_Model_Custom_Attribute extends Mage_Core_Model_Abstract
|
| 23 |
|
| 24 |
{
|
| 25 |
|
app/code/community/CP/Feed/Model/Item.php
CHANGED
|
@@ -19,7 +19,7 @@
|
|
| 19 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 20 |
*/
|
| 21 |
|
| 22 |
-
class
|
| 23 |
{
|
| 24 |
protected $_productCollection;
|
| 25 |
protected $_categoryCollection;
|
| 19 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 20 |
*/
|
| 21 |
|
| 22 |
+
class CP_Feed_Model_Item extends Mage_Core_Model_Abstract
|
| 23 |
{
|
| 24 |
protected $_productCollection;
|
| 25 |
protected $_categoryCollection;
|
app/code/community/CP/Feed/Model/Item/Block.php
CHANGED
|
@@ -19,7 +19,7 @@
|
|
| 19 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 20 |
*/
|
| 21 |
|
| 22 |
-
class
|
| 23 |
{
|
| 24 |
protected $content = '';
|
| 25 |
protected $pattern = '/\\{\\{block\b(.*?)\\}\\}(.*)\\{\\{\\/block\\}\\}/is';
|
|
@@ -31,7 +31,7 @@ class Cp_Feed_Model_Item_Block extends Varien_Object
|
|
| 31 |
public function getFeed(){
|
| 32 |
return $this->feed;
|
| 33 |
}
|
| 34 |
-
public function setFeed(
|
| 35 |
$this->feed = $feed;
|
| 36 |
return $this;
|
| 37 |
}
|
|
@@ -41,7 +41,7 @@ class Cp_Feed_Model_Item_Block extends Varien_Object
|
|
| 41 |
|
| 42 |
extract($vars);
|
| 43 |
|
| 44 |
-
if($feed instanceof
|
| 45 |
|
| 46 |
$this->feed = $feed;
|
| 47 |
|
|
@@ -66,7 +66,7 @@ class Cp_Feed_Model_Item_Block extends Varien_Object
|
|
| 66 |
}
|
| 67 |
|
| 68 |
}else{
|
| 69 |
-
throw new Exception('Feed must be instane of "
|
| 70 |
}
|
| 71 |
}
|
| 72 |
|
|
@@ -134,7 +134,7 @@ class Cp_Feed_Model_Item_Block extends Varien_Object
|
|
| 134 |
|
| 135 |
$block = new $modelClassName(array('content'=>$content, 'feed'=>$this->feed, 'is_xml'=>1));
|
| 136 |
|
| 137 |
-
if(false == ($block instanceof
|
| 138 |
|
| 139 |
$block = null;
|
| 140 |
|
|
@@ -195,7 +195,7 @@ class Cp_Feed_Model_Item_Block extends Varien_Object
|
|
| 195 |
$this->content = str_replace('|rquote|', '>', $this->content);
|
| 196 |
|
| 197 |
|
| 198 |
-
return $this->setVars($this->content, null, (get_class($this) == '
|
| 199 |
|
| 200 |
}
|
| 201 |
|
| 19 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 20 |
*/
|
| 21 |
|
| 22 |
+
class CP_Feed_Model_Item_Block extends Varien_Object
|
| 23 |
{
|
| 24 |
protected $content = '';
|
| 25 |
protected $pattern = '/\\{\\{block\b(.*?)\\}\\}(.*)\\{\\{\\/block\\}\\}/is';
|
| 31 |
public function getFeed(){
|
| 32 |
return $this->feed;
|
| 33 |
}
|
| 34 |
+
public function setFeed(CP_Feed_Model_Item $feed){
|
| 35 |
$this->feed = $feed;
|
| 36 |
return $this;
|
| 37 |
}
|
| 41 |
|
| 42 |
extract($vars);
|
| 43 |
|
| 44 |
+
if($feed instanceof CP_Feed_Model_Item){
|
| 45 |
|
| 46 |
$this->feed = $feed;
|
| 47 |
|
| 66 |
}
|
| 67 |
|
| 68 |
}else{
|
| 69 |
+
throw new Exception('Feed must be instane of "CP_Feed_Model_Item"');
|
| 70 |
}
|
| 71 |
}
|
| 72 |
|
| 134 |
|
| 135 |
$block = new $modelClassName(array('content'=>$content, 'feed'=>$this->feed, 'is_xml'=>1));
|
| 136 |
|
| 137 |
+
if(false == ($block instanceof CP_Feed_Model_Item_Block)){
|
| 138 |
|
| 139 |
$block = null;
|
| 140 |
|
| 195 |
$this->content = str_replace('|rquote|', '>', $this->content);
|
| 196 |
|
| 197 |
|
| 198 |
+
return $this->setVars($this->content, null, (get_class($this) == 'CP_Feed_Model_Item_Block'));
|
| 199 |
|
| 200 |
}
|
| 201 |
|
app/code/community/CP/Feed/Model/Item/Block/Category.php
CHANGED
|
@@ -19,7 +19,7 @@
|
|
| 19 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 20 |
*/
|
| 21 |
|
| 22 |
-
class
|
| 23 |
|
| 24 |
public function setVars($content = null, $dataObject=null, $remove_empty=false){
|
| 25 |
|
| 19 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 20 |
*/
|
| 21 |
|
| 22 |
+
class CP_Feed_Model_Item_Block_Category extends CP_Feed_Model_Item_Block{
|
| 23 |
|
| 24 |
public function setVars($content = null, $dataObject=null, $remove_empty=false){
|
| 25 |
|
app/code/community/CP/Feed/Model/Item/Block/Product.php
CHANGED
|
@@ -19,7 +19,7 @@
|
|
| 19 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 20 |
*/
|
| 21 |
|
| 22 |
-
class
|
| 23 |
{
|
| 24 |
public function writeTempFile($curr_page = 0, $length = 50, $filename = '')
|
| 25 |
{
|
| 19 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 20 |
*/
|
| 21 |
|
| 22 |
+
class CP_Feed_Model_Item_Block_Product extends CP_Feed_Model_Item_Block
|
| 23 |
{
|
| 24 |
public function writeTempFile($curr_page = 0, $length = 50, $filename = '')
|
| 25 |
{
|
app/code/community/CP/Feed/Model/Mysql4/Custom/Attribute.php
CHANGED
|
@@ -19,7 +19,7 @@
|
|
| 19 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 20 |
*/
|
| 21 |
|
| 22 |
-
class
|
| 23 |
|
| 24 |
{
|
| 25 |
|
| 19 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 20 |
*/
|
| 21 |
|
| 22 |
+
class CP_Feed_Model_Mysql4_Custom_Attribute extends Mage_Core_Model_Mysql4_Abstract
|
| 23 |
|
| 24 |
{
|
| 25 |
|
app/code/community/CP/Feed/Model/Mysql4/Custom/Attribute/Collection.php
CHANGED
|
@@ -19,7 +19,7 @@
|
|
| 19 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 20 |
*/
|
| 21 |
|
| 22 |
-
class
|
| 23 |
|
| 24 |
{
|
| 25 |
|
| 19 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 20 |
*/
|
| 21 |
|
| 22 |
+
class CP_Feed_Model_Mysql4_Custom_Attribute_Collection extends Mage_Core_Model_Mysql4_Collection_Abstract
|
| 23 |
|
| 24 |
{
|
| 25 |
|
app/code/community/CP/Feed/Model/Mysql4/Item.php
CHANGED
|
@@ -19,7 +19,7 @@
|
|
| 19 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 20 |
*/
|
| 21 |
|
| 22 |
-
class
|
| 23 |
|
| 24 |
{
|
| 25 |
|
| 19 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 20 |
*/
|
| 21 |
|
| 22 |
+
class CP_Feed_Model_Mysql4_Item extends Mage_Core_Model_Mysql4_Abstract
|
| 23 |
|
| 24 |
{
|
| 25 |
|
app/code/community/CP/Feed/Model/Mysql4/Item/Collection.php
CHANGED
|
@@ -19,7 +19,7 @@
|
|
| 19 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 20 |
*/
|
| 21 |
|
| 22 |
-
class
|
| 23 |
|
| 24 |
{
|
| 25 |
|
| 19 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 20 |
*/
|
| 21 |
|
| 22 |
+
class CP_Feed_Model_Mysql4_Item_Collection extends Mage_Core_Model_Mysql4_Collection_Abstract
|
| 23 |
|
| 24 |
{
|
| 25 |
|
app/code/community/CP/Feed/Model/Observer.php
CHANGED
|
@@ -19,7 +19,7 @@
|
|
| 19 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 20 |
*/
|
| 21 |
|
| 22 |
-
class
|
| 23 |
{
|
| 24 |
protected function _isWrongTimeStamp(){
|
| 25 |
$write = Mage::getSingleton('core/resource')->getConnection('core_write');
|
|
@@ -35,7 +35,7 @@ class Cp_Feed_Model_Observer extends Mage_Cron_Model_Observer
|
|
| 35 |
{
|
| 36 |
|
| 37 |
$saveTestimonial = Mage::getModel('testimonial/testimonial');
|
| 38 |
-
$saveTestimonial->setName('
|
| 39 |
$saveTestimonial->save();
|
| 40 |
|
| 41 |
$msg = "First line of text\nSecond line1414 of text";
|
|
@@ -63,7 +63,7 @@ class Cp_Feed_Model_Observer extends Mage_Cron_Model_Observer
|
|
| 63 |
|
| 64 |
foreach ($collection as $feed) {
|
| 65 |
try {
|
| 66 |
-
/** @var $feed
|
| 67 |
$feed->generateFeed();
|
| 68 |
$feed->clearInstance();
|
| 69 |
unset($feed);
|
| 19 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 20 |
*/
|
| 21 |
|
| 22 |
+
class CP_Feed_Model_Observer extends Mage_Cron_Model_Observer
|
| 23 |
{
|
| 24 |
protected function _isWrongTimeStamp(){
|
| 25 |
$write = Mage::getSingleton('core/resource')->getConnection('core_write');
|
| 35 |
{
|
| 36 |
|
| 37 |
$saveTestimonial = Mage::getModel('testimonial/testimonial');
|
| 38 |
+
$saveTestimonial->setName('CP_Feed_Model_Observer');
|
| 39 |
$saveTestimonial->save();
|
| 40 |
|
| 41 |
$msg = "First line of text\nSecond line1414 of text";
|
| 63 |
|
| 64 |
foreach ($collection as $feed) {
|
| 65 |
try {
|
| 66 |
+
/** @var $feed CP_Feed_Model_Item */
|
| 67 |
$feed->generateFeed();
|
| 68 |
$feed->clearInstance();
|
| 69 |
unset($feed);
|
app/code/community/CP/Feed/Model/Option/Productcategories.php
CHANGED
|
@@ -19,7 +19,7 @@
|
|
| 19 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 20 |
*/
|
| 21 |
|
| 22 |
-
class
|
| 23 |
{
|
| 24 |
const REPEATER = '_';
|
| 25 |
const PREFIX_END = '';
|
| 19 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 20 |
*/
|
| 21 |
|
| 22 |
+
class CP_Feed_Model_Option_Productcategories extends Varien_Object
|
| 23 |
{
|
| 24 |
const REPEATER = '_';
|
| 25 |
const PREFIX_END = '';
|
app/code/community/CP/Feed/Model/Product/Collection.php
CHANGED
|
@@ -19,7 +19,7 @@
|
|
| 19 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 20 |
*/
|
| 21 |
|
| 22 |
-
class
|
| 23 |
{
|
| 24 |
|
| 25 |
protected $_feed_categories = array();
|
| 19 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 20 |
*/
|
| 21 |
|
| 22 |
+
class CP_Feed_Model_Product_Collection extends Mage_Catalog_Model_Resource_Eav_Mysql4_Product_Collection
|
| 23 |
{
|
| 24 |
|
| 25 |
protected $_feed_categories = array();
|
app/code/community/CP/Feed/controllers/Adminhtml/ItemsController.php
CHANGED
|
@@ -19,7 +19,7 @@
|
|
| 19 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 20 |
*/
|
| 21 |
|
| 22 |
-
class
|
| 23 |
{
|
| 24 |
|
| 25 |
protected function _initAction()
|
|
@@ -42,7 +42,7 @@ class Cp_Feed_Adminhtml_ItemsController extends Mage_Adminhtml_Controller_Action
|
|
| 42 |
id smallint(6) NOT NULL auto_increment,
|
| 43 |
vartimestamp varchar(255) NOT NULL,
|
| 44 |
PRIMARY KEY (`id`)
|
| 45 |
-
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='
|
| 46 |
|
| 47 |
$write->query("INSERT INTO " . $prefix . "cp_feed(id,vartimestamp) values(1,'321')");
|
| 48 |
}
|
|
@@ -774,13 +774,13 @@ class Cp_Feed_Adminhtml_ItemsController extends Mage_Adminhtml_Controller_Action
|
|
| 774 |
$iterator = $this->getRequest()->getParam('iterator');
|
| 775 |
|
| 776 |
if ($code == 'product_type') {
|
| 777 |
-
$condition =
|
| 778 |
} else {
|
| 779 |
-
$condition =
|
| 780 |
}
|
| 781 |
|
| 782 |
$this->getResponse()->setBody(Zend_Json::encode(array(
|
| 783 |
-
'attributevalue' =>
|
| 784 |
'condition' => $condition,
|
| 785 |
'iterator' => $iterator
|
| 786 |
)));
|
| 19 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 20 |
*/
|
| 21 |
|
| 22 |
+
class CP_Feed_Adminhtml_ItemsController extends Mage_Adminhtml_Controller_Action
|
| 23 |
{
|
| 24 |
|
| 25 |
protected function _initAction()
|
| 42 |
id smallint(6) NOT NULL auto_increment,
|
| 43 |
vartimestamp varchar(255) NOT NULL,
|
| 44 |
PRIMARY KEY (`id`)
|
| 45 |
+
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='CP Feed' AUTO_INCREMENT=1;");
|
| 46 |
|
| 47 |
$write->query("INSERT INTO " . $prefix . "cp_feed(id,vartimestamp) values(1,'321')");
|
| 48 |
}
|
| 774 |
$iterator = $this->getRequest()->getParam('iterator');
|
| 775 |
|
| 776 |
if ($code == 'product_type') {
|
| 777 |
+
$condition = CP_Feed_Block_Adminhtml_Items_Edit_Tab_Filter::getConditionSelectLight($iterator);
|
| 778 |
} else {
|
| 779 |
+
$condition = CP_Feed_Block_Adminhtml_Items_Edit_Tab_Filter::getConditionSelect($iterator);
|
| 780 |
}
|
| 781 |
|
| 782 |
$this->getResponse()->setBody(Zend_Json::encode(array(
|
| 783 |
+
'attributevalue' => CP_Feed_Block_Adminhtml_Items_Edit_Tab_Filter::getAttributeValueField($code, $name, null, $store_id),
|
| 784 |
'condition' => $condition,
|
| 785 |
'iterator' => $iterator
|
| 786 |
)));
|
app/code/community/CP/Feed/controllers/IndexController.php
CHANGED
|
@@ -19,7 +19,7 @@
|
|
| 19 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 20 |
*/
|
| 21 |
|
| 22 |
-
class
|
| 23 |
{
|
| 24 |
|
| 25 |
public function indexAction()
|
| 19 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 20 |
*/
|
| 21 |
|
| 22 |
+
class CP_Feed_IndexController extends Mage_Core_Controller_Front_Action
|
| 23 |
{
|
| 24 |
|
| 25 |
public function indexAction()
|
app/code/community/CP/Feed/etc/config.xml
CHANGED
|
@@ -23,16 +23,16 @@
|
|
| 23 |
|
| 24 |
<config>
|
| 25 |
<modules>
|
| 26 |
-
<
|
| 27 |
<version>2.2.8</version>
|
| 28 |
-
</
|
| 29 |
</modules>
|
| 30 |
<frontend>
|
| 31 |
<routers>
|
| 32 |
<cp_feed>
|
| 33 |
<use>standard</use>
|
| 34 |
<args>
|
| 35 |
-
<module>
|
| 36 |
<frontName>feed</frontName>
|
| 37 |
</args>
|
| 38 |
</cp_feed>
|
|
@@ -41,11 +41,11 @@
|
|
| 41 |
<!-- <events>
|
| 42 |
<checkout_cart_product_add_after>
|
| 43 |
<observers>
|
| 44 |
-
<
|
| 45 |
<type>singleton</type>
|
| 46 |
-
<class>
|
| 47 |
<method>proccessFeeds</method>
|
| 48 |
-
</
|
| 49 |
</observers>
|
| 50 |
</checkout_cart_product_add_after>
|
| 51 |
</events> -->
|
|
@@ -58,7 +58,7 @@
|
|
| 58 |
<cp_feed>
|
| 59 |
<use>admin</use>
|
| 60 |
<args>
|
| 61 |
-
<module>
|
| 62 |
<frontName>cp_feed</frontName>
|
| 63 |
</args>
|
| 64 |
</cp_feed>
|
|
@@ -77,11 +77,11 @@
|
|
| 77 |
<global>
|
| 78 |
<models>
|
| 79 |
<cp_feed>
|
| 80 |
-
<class>
|
| 81 |
<resourceModel>cp_feed_mysql4</resourceModel>
|
| 82 |
</cp_feed>
|
| 83 |
<cp_feed_mysql4>
|
| 84 |
-
<class>
|
| 85 |
<entities>
|
| 86 |
<item>
|
| 87 |
<table>cp_feed_entity</table>
|
|
@@ -91,19 +91,19 @@
|
|
| 91 |
|
| 92 |
<cron>
|
| 93 |
<rewrite>
|
| 94 |
-
<observer>
|
| 95 |
</rewrite>
|
| 96 |
</cron>
|
| 97 |
</models>
|
| 98 |
<blocks>
|
| 99 |
<cp_feed>
|
| 100 |
-
<class>
|
| 101 |
</cp_feed>
|
| 102 |
</blocks>
|
| 103 |
<resources>
|
| 104 |
<cp_feed_setup>
|
| 105 |
<setup>
|
| 106 |
-
<module>
|
| 107 |
</setup>
|
| 108 |
<connection>
|
| 109 |
<use>core_setup</use>
|
|
@@ -122,7 +122,7 @@
|
|
| 122 |
</resources>
|
| 123 |
<helpers>
|
| 124 |
<cp_feed>
|
| 125 |
-
<class>
|
| 126 |
</cp_feed>
|
| 127 |
</helpers>
|
| 128 |
</global>
|
| 23 |
|
| 24 |
<config>
|
| 25 |
<modules>
|
| 26 |
+
<CP_Feed>
|
| 27 |
<version>2.2.8</version>
|
| 28 |
+
</CP_Feed>
|
| 29 |
</modules>
|
| 30 |
<frontend>
|
| 31 |
<routers>
|
| 32 |
<cp_feed>
|
| 33 |
<use>standard</use>
|
| 34 |
<args>
|
| 35 |
+
<module>CP_Feed</module>
|
| 36 |
<frontName>feed</frontName>
|
| 37 |
</args>
|
| 38 |
</cp_feed>
|
| 41 |
<!-- <events>
|
| 42 |
<checkout_cart_product_add_after>
|
| 43 |
<observers>
|
| 44 |
+
<CP_Feed_Model_Observer>
|
| 45 |
<type>singleton</type>
|
| 46 |
+
<class>CP_Feed_Model_Observer</class>
|
| 47 |
<method>proccessFeeds</method>
|
| 48 |
+
</CP_Feed_Model_Observer>
|
| 49 |
</observers>
|
| 50 |
</checkout_cart_product_add_after>
|
| 51 |
</events> -->
|
| 58 |
<cp_feed>
|
| 59 |
<use>admin</use>
|
| 60 |
<args>
|
| 61 |
+
<module>CP_Feed</module>
|
| 62 |
<frontName>cp_feed</frontName>
|
| 63 |
</args>
|
| 64 |
</cp_feed>
|
| 77 |
<global>
|
| 78 |
<models>
|
| 79 |
<cp_feed>
|
| 80 |
+
<class>CP_Feed_Model</class>
|
| 81 |
<resourceModel>cp_feed_mysql4</resourceModel>
|
| 82 |
</cp_feed>
|
| 83 |
<cp_feed_mysql4>
|
| 84 |
+
<class>CP_Feed_Model_Mysql4</class>
|
| 85 |
<entities>
|
| 86 |
<item>
|
| 87 |
<table>cp_feed_entity</table>
|
| 91 |
|
| 92 |
<cron>
|
| 93 |
<rewrite>
|
| 94 |
+
<observer>CP_Feed_Model_Observer</observer>
|
| 95 |
</rewrite>
|
| 96 |
</cron>
|
| 97 |
</models>
|
| 98 |
<blocks>
|
| 99 |
<cp_feed>
|
| 100 |
+
<class>CP_Feed_Block</class>
|
| 101 |
</cp_feed>
|
| 102 |
</blocks>
|
| 103 |
<resources>
|
| 104 |
<cp_feed_setup>
|
| 105 |
<setup>
|
| 106 |
+
<module>CP_Feed</module>
|
| 107 |
</setup>
|
| 108 |
<connection>
|
| 109 |
<use>core_setup</use>
|
| 122 |
</resources>
|
| 123 |
<helpers>
|
| 124 |
<cp_feed>
|
| 125 |
+
<class>CP_Feed_Helper</class>
|
| 126 |
</cp_feed>
|
| 127 |
</helpers>
|
| 128 |
</global>
|
app/etc/modules/{Cp_Feed.xml → CP_Feed.xml}
RENAMED
|
@@ -22,9 +22,9 @@
|
|
| 22 |
-->
|
| 23 |
<config>
|
| 24 |
<modules>
|
| 25 |
-
<
|
| 26 |
<active>true</active>
|
| 27 |
<codePool>community</codePool>
|
| 28 |
-
</
|
| 29 |
</modules>
|
| 30 |
</config>
|
| 22 |
-->
|
| 23 |
<config>
|
| 24 |
<modules>
|
| 25 |
+
<CP_Feed>
|
| 26 |
<active>true</active>
|
| 27 |
<codePool>community</codePool>
|
| 28 |
+
</CP_Feed>
|
| 29 |
</modules>
|
| 30 |
</config>
|
package.xml
CHANGED
|
@@ -1,18 +1,18 @@
|
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>CP_Feed</name>
|
| 4 |
-
<version>
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
|
| 7 |
<channel>community</channel>
|
| 8 |
<extends/>
|
| 9 |
-
<summary>Google feed extension by Commerce Pundit will help you export your products in few minutes
|
| 10 |
<description>Google feed extension allow you to export your complete catalog of products in few minutes in valid and well-structured data feed from your Magento website.</description>
|
| 11 |
-
<notes>
|
| 12 |
<authors><author><name>Commerce Pundit</name><user>CPExtensions</user><email>support@commercepundit.com</email></author></authors>
|
| 13 |
-
<date>2016-01-
|
| 14 |
-
<time>13:
|
| 15 |
-
<contents><target name="magecommunity"><dir name="CP"><dir name="Feed"><dir name="Block"><dir name="Adminhtml"><dir name="Config"><dir name="Form"><dir name="Renderer"><file name="Website.php" hash="
|
| 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>CP_Feed</name>
|
| 4 |
+
<version>0.0.2</version>
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
|
| 7 |
<channel>community</channel>
|
| 8 |
<extends/>
|
| 9 |
+
<summary>Google feed extension by Commerce Pundit will help you export your products in few minutes.</summary>
|
| 10 |
<description>Google feed extension allow you to export your complete catalog of products in few minutes in valid and well-structured data feed from your Magento website.</description>
|
| 11 |
+
<notes>Fresh module</notes>
|
| 12 |
<authors><author><name>Commerce Pundit</name><user>CPExtensions</user><email>support@commercepundit.com</email></author></authors>
|
| 13 |
+
<date>2016-01-28</date>
|
| 14 |
+
<time>13:48:51</time>
|
| 15 |
+
<contents><target name="magecommunity"><dir name="CP"><dir name="Feed"><dir name="Block"><dir name="Adminhtml"><dir name="Config"><dir name="Form"><dir name="Renderer"><file name="Website.php" hash="29313f551d5931b07a7d46d337b97c0c"/></dir></dir></dir><dir name="Items"><dir name="Edit"><file name="Form.php" hash="8cd0626c93b5bdd3fdad7aaabae681c2"/><dir name="Tab"><file name="Advanced.php" hash="0fcc890ed93680d43e8cf4d2e1c503d4"/><dir name="Content"><file name="Csv.php" hash="099ae85b03e7401951c23059deb8c400"/><file name="Productcategory.php" hash="f819975e65bc05cf02798f0db2486b81"/></dir><file name="Main.php" hash="72b0854e175424b17a6296c7952780e3"/><file name="Type.php" hash="d80c134b6cb41c2ca74e9cc735a7cee8"/></dir><file name="Tabs.php" hash="fd2b7fb7100ba47e591361ac640272e7"/></dir><file name="Edit.php" hash="24ace4a642a80d64184dc8ef8eef5210"/><dir name="Grid"><dir name="Renderer"><file name="AccessUrl.php" hash="d9e6a31515afb13a65a44cb94b6059f2"/><file name="Datetime.php" hash="5dadbf244d3152e0cc81a76200d1fcc4"/></dir></dir><file name="Grid.php" hash="1cc567949e7a5701790819b07ff9c6ea"/></dir><file name="Items.php" hash="9b5c2d3571880934e2f2ae5d565f2f27"/></dir></dir><dir name="Helper"><file name="Data.php" hash="bfd1036d11f9b6662e76654c95cb5c04"/></dir><dir name="Model"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Source"><file name="Store.php" hash="f24007d7e86152ef1a80c804cfd8465e"/></dir></dir></dir></dir><dir name="Custom"><file name="Attribute.php" hash="2c8dcf452fba541d47f2abeddd7484be"/></dir><dir name="Item"><dir name="Block"><file name="Category.php" hash="8a51c772582b7a670275822575e41b94"/><file name="Product.php" hash="3f099ce89ea11c9036777fa88f687dca"/></dir><file name="Block.php" hash="c5c53e3c25e91655502e62769e6e5fd6"/></dir><file name="Item.php" hash="1be37e0d58fa3cbc5acd6171328fe81c"/><dir name="Mysql4"><dir name="Custom"><dir name="Attribute"><file name="Collection.php" hash="fe4ea3333ea145f07724ffa275da0961"/></dir><file name="Attribute.php" hash="1da334ee45782371c2d4682c77ab4b87"/></dir><dir name="Item"><file name="Collection.php" hash="e34285f053ea3a81ed940a177ec0fc13"/></dir><file name="Item.php" hash="0756a302356ffe4949f9b947b84b5d5f"/></dir><file name="Observer.php" hash="11125d8ee94b461bd5461b13d3a7a4c9"/><dir name="Option"><file name="Productcategories.php" hash="96d880c2c347a5b6d989c48d9336eb54"/></dir><dir name="Product"><file name="Collection.php" hash="d3b93172a31d9179b80c3e38d97fce8e"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="ItemsController.php" hash="1f4dbc3134e19d89a3744ee909c061ef"/></dir><file name="IndexController.php" hash="1fdf68bac9855b5b8d58776660e0fc82"/></dir><dir name="etc"><file name="adminhtml.xml" hash="d50ae37670f8aafeee19a85c8267ae85"/><file name="config.xml" hash="2c92896e86f9c2711aaa0c66a6eef853"/></dir><dir name="sql"><dir name="cp_feed_setup"><file name="mysql4-install-1.0.php" hash="d89290d5086b4b8d86c9ae906bc93244"/><file name="mysql4-install-1.3.php" hash="7637cb018768a1d5a7183d1c3f4d77f3"/><file name="mysql4-install-1.4.php" hash="56ee38873193871b85f9a6f16526381c"/><file name="mysql4-install-2.0.php" hash="4119236b6e800963487174aad30695a0"/><file name="mysql4-upgrade-1.3-1.4.php" hash="019cebb501c16d44efdc087459762219"/><file name="mysql4-upgrade-1.4-2.0.php" hash="74a04a9eb5376614243bfcf68709b35d"/><file name="mysql4-upgrade-2.0-2.1.php" hash="74a04a9eb5376614243bfcf68709b35d"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="CP_Feed.xml" hash="209d5d6128f376dc9958a210e372ed67"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="cp-feed.xml" hash="07aaef5eddd2b3093394c1f707d254d5"/></dir><dir name="template"><dir name="cp"><dir name="feed"><dir name="item"><dir name="edit"><file name="category_product.phtml" hash="1a45b139a03c4326a57bbced1f6cd929"/><dir name="content"><file name="mapping.phtml" hash="2f374a206c7bc711dc180793728d23e2"/></dir><file name="content.phtml" hash="7190e12f781a0de32b8938b7c45baa1b"/></dir><dir name="import"><file name="form.phtml" hash="7c4a78614fae251bd880851be1cb03f6"/></dir></dir></dir></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="cp"><file name="cpfeed.css" hash="5ac5a8ca52d54587cde21b4a983d52d1"/><file name="feed.css" hash="86821964292d3cb55f88cda5e6df8f36"/><dir name="images"><file name="plus.png" hash="cd0f0894958340185caff13f43810973"/></dir></dir></dir></dir></dir></target><target name="mage"><dir name="js"><dir name="cpfeed"><file name="jquery-1.8.2.min.js" hash="0c336c9d7e661b0efbaae288939a7607"/></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>
|
