This file contains 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
$app->get('/encrypt/:string', function ($string) use ($app) { | |
echo sha1($string); | |
} | |
); |
This file contains 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
---CSS | |
/* Helper to vertical align content*/ | |
.vhelper { height: 100%; padding: 0;} | |
/* Vertical-Alignment without given height */ | |
.vhelper, .justify-middle { display: inline-block; vertical-align: middle; } | |
---HTML |
This file contains 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 <yourtemplate>/email/order/items/order/default.phtml // | |
....... | |
<?php /** Get product attributes */ ?> | |
<?php $_product = Mage::getModel('catalog/product')->load($_item->getProduct()->getId()) ?> | |
<?php $_attributes = $_product->getAttributes() ?> | |
<?php $_arrDisplayAttributes = array('of_attributes_display') ?> | |
<?php foreach($_attributes as $_attribute) : ?> | |
<?php $_attributeCode = $_attribute->getAttributeCode() ?> |
This file contains 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
<link rel="import" href="../core-scaffold/core-scaffold.html"> | |
<link rel="import" href="../core-header-panel/core-header-panel.html"> | |
<link rel="import" href="../core-menu/core-menu.html"> | |
<link rel="import" href="../core-item/core-item.html"> | |
<link rel="import" href="../core-icon-button/core-icon-button.html"> | |
<link rel="import" href="../core-toolbar/core-toolbar.html"> | |
<link rel="import" href="../core-menu/core-submenu.html"> | |
<link rel="import" href="../core-drawer-panel/core-drawer-panel.html"> | |
<link rel="import" href="../core-pages/core-pages.html"> |
OlderNewer