◄Шаблоны► для Magento

Для просмотра ссылки Войди или Зарегистрируйся

admin722.jpg


Download
Для просмотра ссылки Войди или Зарегистрируйся
 
Последнее редактирование:
Для просмотра ссылки Войди или Зарегистрируйся
porto_preview.__large_preview.png


Version 2.0 (12/23/2015)
  • Fixed
    - 404 error in Add a Deal page on the admin.
    - Price slider was not working on search result page.
  • Updated
    - Magento 2.0 Ready! (Starts with only 4 demos from 1.x version.)

Для просмотра ссылки Войди или Зарегистрируйся

С наступающим 2016!
 

Вложения

  • license.jpg
    license.jpg
    36,4 KB · Просмотры: 75
Тема хорошая, но для ее установки требуется ключ. Или это можно как-то обойти?

это можно обойти :s_v_shapke:

app/code/community/TM/Core/Model/Resource/Module/RemoteCollection.php

замени код и всо будит работат прикрасно...

Код:
<?php

class TM_Core_Model_Resource_Module_RemoteCollection extends Varien_Data_Collection
{
    const XML_FEED_URL_PATH = 'tmcore/modules/feed_url';

    protected $_collectedModules = array();

    /**
     * Lauch data collecting
     *
     * @param bool $printQuery
     * @param bool $logQuery
     * @return Varien_Data_Collection_Filesystem
     */
    public function loadData($printQuery = false, $logQuery = false)
    {
        if ($this->isLoaded()) {
            return $this;
        }

        try {
            $client  = new Zend_Http_Client();
            $adapter = new Zend_Http_Client_Adapter_Curl();
            $client->setAdapter($adapter);
            $client->setUri($this->_getFeedUri());
            $client->setConfig(array('maxredirects'=>0, 'timeout'=>30));
            $client->setParameterGet('domain', Mage::app()->getRequest()->getHttpHost());
            $responseBody = $client->request()->getBody();
            $modules      = Mage::helper('core')->jsonDecode($responseBody);
            if (!is_array($modules)) {
                throw new Exception('Decoding failed');
            }
        } catch (Exception $e) {
            // @todo remove this fix and add error message
            $modules = array(
                'TM_Core' => array(
                    'code'          => 'TM_Core',
                    'version'       => '',
                    'changelog'     => '',
                    'link'          => '',
                    'download_link' => '',
                    //'identity_key_link' => ''
                ),
                'TM_License' => array(
                    'code'          => 'TM_License',
                    'version'       => '',
                    'changelog'     => '',
                    'link'          => '',
                    'download_link' => '',
                    //'identity_key_link' => ''
                ),
                'TM_Argento' => array(
                    'code'          => 'TM_Argento',
                    'version'       => '',
                    'changelog'     => '',
                    'link'          => '',
                    'download_link' => '',
                    //'identity_key_link' => '',
                    'changelog'     => ""
                ),
                'TM_ArgentoArgento' => array(
                    'code'          => 'TM_ArgentoArgento',
                    'version'       => '',
                    'changelog'     => "",
                    'link'          => 'http://argentotheme.com',
                    'download_link' => 'https://argentotheme.com/downloadable/customer/products/',
                    //'identity_key_link' => 'https://argentotheme.com/license/customer/identity/'
                ),
                'TM_ArgentoFlat' => array(
                    'code'          => 'TM_ArgentoFlat',
                    'version'       => '',
                    'changelog'     => "",
                    'link'          => 'http://argentotheme.com',
                    'download_link' => 'https://argentotheme.com/downloadable/customer/products/',
                    //'identity_key_link' => 'https://argentotheme.com/license/customer/identity/'
                ),
                'TM_ArgentoMage2Cloud' => array(
                    'code'          => 'TM_ArgentoMage2Cloud',
                    'version'       => '',
                    'changelog'     => "",
                    'link'          => 'http://argentotheme.com',
                    'download_link' => '',
                    //'identity_key_link' => ''
                ),
                'TM_ArgentoMall' => array(
                    'code'          => 'TM_ArgentoMall',
                    'version'       => '',
                    'changelog'     => "",
                    'link'          => 'http://argentotheme.com',
                    'download_link' => 'https://argentotheme.com/downloadable/customer/products/',
                    //'identity_key_link' => 'https://argentotheme.com/license/customer/identity/'
                ),
                'TM_ArgentoPure' => array(
                    'code'          => 'TM_ArgentoPure',
                    'version'       => '',
                    'changelog'     => "",
                    'link'          => 'http://argentotheme.com',
                    'download_link' => 'https://argentotheme.com/downloadable/customer/products/',
                    //'identity_key_link' => 'https://argentotheme.com/license/customer/identity/'
                ),
                'TM_ArgentoTM' => array(
                    'code'          => 'TM_ArgentoTM',
                    'version'       => '',
                    'changelog'     => "",
                    'link'          => 'http://argentotheme.com',
                    'download_link' => '',
                    //'identity_key_link' => ''
                )
            );
        }

        foreach ($modules as $moduleName => $values) {
            $values['id'] = $values['code'];
            $this->_collectedModules[$values['code']] = $values;
        }

        // calculate totals
        $this->_totalRecords = count($this->_collectedModules);
        $this->_setIsLoaded();

        // paginate and add items
        $from = ($this->getCurPage() - 1) * $this->getPageSize();
        $to = $from + $this->getPageSize() - 1;
        $isPaginated = $this->getPageSize() > 0;

        $cnt = 0;
        foreach ($this->_collectedModules as $row) {
            $cnt++;
            if ($isPaginated && ($cnt < $from || $cnt > $to)) {
                continue;
            }
            $item = new $this->_itemObjectClass();
            $this->addItem($item->addData($row));
            if (!$item->hasId()) {
                $item->setId($cnt);
            }
        }

        return $this;
    }

    protected function _getFeedUri()
    {
        $useHttps = Mage::getStoreConfigFlag(TM_Core_Model_Module::XML_USE_HTTPS_PATH);
        return ($useHttps ? 'https://' : 'http://')
            . Mage::getStoreConfig(self::XML_FEED_URL_PATH);
    }
}


 

Вложения

  • RemoteCollection.rar
    1,3 KB · Просмотры: 35
Назад
Сверху