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
<?php | |
include_once("app/Mage.php"); | |
umask(0); | |
Mage::app('admin'); | |
$collection = Mage::getResourceModel('catalog/product_collection'); |
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
//in module/controllers | |
//NOT in modules/controllers/Adminhtml | |
class MageB2B_Sublogin_SubloginController extends Mage_Adminhtml_Controller_Action | |
<admin> | |
<routers> | |
<sublogin> | |
<use>admin</use> | |
<args> |
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
CREATE VIEW customer_view AS | |
SELECT e.entity_id, | |
e.group_id, | |
e.store_id, | |
e.website_id, | |
e.email, | |
confirmation.value AS confirmation, | |
created_in.value AS created_in, | |
default_billing.value AS default_billing, |
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
<?php | |
require_once 'abstract.php'; | |
/** | |
* Sync Order Grid shell script looks for orders | |
* that exist in the sales_flat_order table but not in the sales_flat_order_grid | |
* and using magento methods syncs them | |
* | |
* @author Winston Nolan <[email protected]> | |
*/ |
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
<?php | |
// observer | |
public function addStockItemData($observer) | |
{ | |
$collection = $observer->getCollection(); | |
Mage::getSingleton('cataloginventory/stock')->addItemsToProducts($collection); | |
} |
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
<frontend> | |
<events> | |
<catalog_product_collection_load_after> | |
<class>your_module/observer</class> | |
<method>addStockItemData</method> | |
</catalog_product_collection_load_after> | |
</events> | |
</frontend> |
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
backend default { | |
.host = "127.0.0.1"; | |
.port = "80"; | |
.first_byte_timeout = 300s; | |
} | |
/* | |
Like the default function, only that cookies don't prevent caching | |
*/ | |
sub vcl_recv { |
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
$('input-'+response.itemId).setValue(); | |
$('input-'+response.itemId).writeAttribute('value', ''); | |
$('input-'+response.itemId).clear(); | |
$('input-'+response.itemId).writeAttribute('input-type', inputType); | |
$('input-'+response.itemId).writeAttribute('placeholder', placeholder); |
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
<?php | |
/** | |
* @category Fishpig | |
* @package Fishpig_Wordpress | |
* @license http://fishpig.co.uk/license.txt | |
* @author Ben Tideswell <[email protected]> | |
*/ | |
?> | |
<?php $posts = $this->getPosts() ?> | |
<?php if (count($posts) > 0): ?> |
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
<reference name="wordpress_post_list"> | |
<block type="core/text_list" name="post.content.before" as="before_post_content" /> | |
<block type="core/text_list" name="post.content.after" as="after_post_content"> | |
<block type="wordpress/post_meta" name="post.view.meta" as="meta" after="-" template="wordpress/post/meta.phtml" /> | |
</block> | |
<block type="wordpress/post_list_pager" name="wordpress_post_list.pager" as="pager" /> | |
</reference> |