Run Magento Code Outside of Magento

来源:互联网 发布:淘宝刷客怎么判刑2016 编辑:程序博客网 时间:2024/06/05 08:30

 

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

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:

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

Yet another block of code with some interested stuff:

view plaincopy to clipboardprint?
  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. }
原创粉丝点击