Chinaunix首页 | 论坛 | 博客
  • 博客访问: 70333
  • 博文数量: 67
  • 博客积分: 2760
  • 博客等级: 少校
  • 技术积分: 690
  • 用 户 组: 普通用户
  • 注册时间: 2009-10-28 22:14
文章分类

全部博文(67)

文章存档

2011年(1)

2009年(66)

我的朋友
最近访客

分类: 系统运维

2009-11-12 20:38:46

Hi All -
Finally time for a new post! (Something I’m surprised I haven’t covered yet).
This post will inform you on how to run Magento code outside of Magento. All you need is to have access to Magento’s ‘app/Mage.php‘ file.

This will be handy code for a few things:

  • Integration with 3rd party items – shared sessions, or just shared themes
  • Ajax calls – although not the preferred solutions for Ajax calls, it is a quick and easy one

To expand on these ideas a bit more:
Integration:
-You can use this code to output HTML that is outputted in Magento anywhere. You might want to integrate Wordpress and steal the navigation from Magento, for instance. You might want to share sessions and users between your CMS and Magento (and even share the databases). This can help you get started on doing that.

Ajax:
-Because you can use this code to output any block/template, you can use it for Ajax calls in your Magento build. You build your block and template (and any other needed objects) as usual and output them via this code.

Here is a sample:

  1. require_once ‘app/Mage.php’;
  2. umask(0);
  3. /* not Mage::run(); */
  4. Mage::app(‘default’);
  5. // get layout object
  6. $layout = Mage::getSingleton(‘core/layout’);
  7. //get block object
  8. $block = $layout->createBlock(‘catalog/product_ajax’);
  9. /* choose whatever category ID you want */
  10. $block->setCategoryId(3);
  11. $block->setTemplate(‘catalog/product/ajaxevents.phtml’);
  12. echo $block->renderView();
  13. ?>

We can see in this block of code that we are grabbing the custom block ‘catalog/product_ajax‘.
This is simply a block that grabs a product collection. In this case, we are able to set the category id to 3. (See the post on custom blocks to help you get a feel for what this might look like).

This block is then setting the .phtml template to ‘ajaxevents.phtml‘ and rendering the view. You hopefully can see how this would be useful for Ajax calls.

Other code that might help you along your way:
From php architect’s book (might be outdated!!! We haven’t tested this particular code):

  1. include(‘app/Mage.php’);
  2. Mage::App(‘base’); //might be ”default”
  3. $customer = Mage::getModel(‘customer/customer’);
  4. $customer->loadByEmail(’some@email.address’); /* need a users email address */
  5. $session = Mage::getSingleton(‘customer/session’);
  6. $session->start();

Here is some session code that will grab cart information. Notice that this code doesn’t start a session:

  1. $mageFilename = ‘app/Mage.php’;
  2. require_once $mageFilename;
  3. umask(0);
  4. Mage::app();
  5. /* Magento uses different sessions for ’frontend’ and ’adminhtml’ */
  6. Mage::getSingleton(‘core/session’, array(‘name’=>‘frontend’));
  7. // $cart = Mage::getSingleton(’checkout/cart’)->getItemsCount();
  8. // $cart = Mage::helper(’checkout/cart’)->getItemsCount();
  9. $cart = Mage::helper(‘checkout/cart’)->getCart()->getItemsCount();
  10. echo ‘cart items count: ’ . $cart;
  11. ?>

Yet another block of code with some interested stuff:

  1. require_once ‘app/Mage.php’;
  2. umask(0);
  3. $app = Mage::app(‘default’);
  4. /* Init User Session */
  5. $session = Mage::getSingleton(‘customer/session’, array(‘name’=>‘frontend’));
  6. if ($session->isLoggedIn()) {
  7. /* do something if logged in */
  8. else {
  9. /* do something else if not logged in */
  10. }
阅读(402) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~