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 | |
| Mage::getSingleton('eav/config') | |
| ->getEntityType(Mage_Catalog_Model_Product::ENTITY) | |
| ->getAttributeCollection(); | |
| ?> |
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
| <? for($navigation as $item) : ?> | |
| <li><a href="<?= $item->href ?>"><?= $item->caption ?></a></li> | |
| <? endfor; ?> |
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 | |
| /** | |
| * Esta funcion devuelve una cadena pasada como parametro | |
| * truncada a un maximo de caracteres segun parametro | |
| * @param string $string | |
| * @param int $maxLength | |
| * @return string | |
| */ | |
| public function truncateString($string, $maxLength) |
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
| function addEvent(obj, evType, fn){ | |
| if (obj.addEventListener){ | |
| obj.addEventListener(evType, fn, false); | |
| return true; | |
| } else if (obj.attachEvent){ | |
| var r = obj.attachEvent("on"+evType, fn); | |
| return r; | |
| } else { | |
| return 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 | |
| //manera que utilizan muchas extensiones, aunque no es la recomendable, | |
| //ya que magento incluye esta funcionalidad en su core | |
| $modules = Mage::getConfig()->getNode('modules')->children(); | |
| $modulesArray = (array)$modules; | |
| if($modulesArray['Module_Name']->is('active')) { | |
| echo "module is active."; |
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
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
| <html xmlns="http://www.w3.org/1999/xhtml"> | |
| <head> | |
| <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> | |
| <title>Remove Magento's orphan images web console</title> | |
| <link href='https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,700' rel='stylesheet' type='text/css'> | |
| <link href='https://fonts.googleapis.com/css?family=Inconsolata:400,700&subset=latin,latin-ext' rel='stylesheet' | |
| type='text/css'> | |
| <style type="text/css"> |
OlderNewer