This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SKYWIRE.HomeSlider = (function () { | |
| function setup() { | |
| $('.home-slider').anythingSlider({ | |
| theme: 'minimalist-round', | |
| buildStartStop: false, | |
| easing: 'easeOutSine', | |
| animationTime: 1400, | |
| hashTags: false, | |
| onInitialized: function (event, slider) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 'router' => array( | |
| 'routes' => array( | |
| 'login' => array( | |
| 'type' => 'Literal', | |
| 'options' => array( | |
| // Change this to something specific to your module | |
| 'route' => '/login', | |
| 'defaults' => array( | |
| // Change this value to reflect the namespace in which | |
| // the controllers for your module are found |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Replace lines 84 - 85 with: | |
| $skinUrl = $this->getSkinUrl($item['name']); | |
| $joinDir = strpos($skinUrl, 'skin') !== false ? 'skin' : 'media'; | |
| $chunks=explode('/' . $joinDir, $this->getSkinUrl($item['name']),2); | |
| $lines[$if]['stylesheet'][] = "/".$webroot.$joinDir.$chunks[1]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Mage::getModel('catalog/category')->addFieldToSelect('*')->load($categoryId); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| File: Mage_Adminhtml_Model_Config_Data | |
| Line: 135 | |
| Change to: | |
| $backendClass = is_object($fieldConfig) ? $fieldConfig->backend_model : false; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| //faster using strpos | |
| $staging_subdomains = array( | |
| 's1', | |
| 's2', | |
| 's3', | |
| 's4', | |
| 's5', | |
| 'mac', | |
| 'local', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| abstract class Skywire_PressRelease_Test_Controller_Adminhtml_Abstract | |
| extends EcomDev_PHPUnit_Test_Case_Controller | |
| { | |
| const FAKE_USER_ID = 999999999; | |
| /** | |
| * Login to the admin store | |
| * | |
| * @return null | |
| */ |