magento 전역 변수 또는 함수 설정(Session, Registry 및 Function)
4399 단어 function
To set a Magento session variable:
$myValue = 'Hello World';
Mage::getSingleton('core/session')->setMyValue($myValue);
To Retrieve:
$myValue = '';
$myValue=Mage::getSingleton('core/session')->getMyValue();
To Unset:
Mage::getSingleton('core/session')->unsMyValue();
혹은
/* Core Session */
Mage::getSingleton('core/session')->setYourVariable('data');
$Data = Mage::getSingleton('core/session')->getYourVariable();
/* Customer Session */
Mage::getSingleton('customer/session')->setYourVariable('data');
$Data = Mage::getSingleton('customer/session')->getYourVariable();
/* Admin Session */
Mage::getSingleton('admin/session')->setYourVariable('data');
$Data = Mage::getSingleton('admin/session')->getYourVariable();
2. Magento’s Registry Pattern
The three registry methods are
Mage::register
Mage::unregister
Mage::registry
The
register
method is how you set a global-like variable. Mage::register('some_name', $var);
Then, later in the request execution, (from any method), you can fetch your variable back out
$my_var = Mage::registry('some_name');
Finally, if you want to make you variable unavailable, you can use the
unregister
method to remove it from the registry. Mage::unregister('some_name');
추가 참조: http://alanstorm.com/magento_registry_singleton_tutorial
3. Create Global Function In Magento
This code will allow you to add a function that can be called from anywhere within Magento. It extends the helper class
1) Create a file named ‘Mycode.xml’ and copy it to app/etc/modules/– it should look like this:
<?xml version="1.0"?>
<config>
<modules>
<Mycode_Function>
<active>true</active>
<codePool>local</codePool>
</Mycode_Function>
</modules>
</config>
2) Create the directory app/code/local/Mycode/Function/etc and then create a file named ‘config.xml’ In it copy:
<?xml version="1.0"?>
<config>
<modules>
<Mycode_Function>
<version>1.0.0</version>
</Mycode_Function>
</modules>
<global>
<helpers>
<function>
<class>Mycode_Function_Helper</class>
</function>
</helpers>
</global>
</config>
3) Create the directory app/code/local/Mycode/Function/Helper and then create a file named ‘Data.php’ In it copy:
<?php
class Mycode_Function_Helper_Data extends Mage_Core_Helper_Abstract
{
public function test(){
return 'works';
}
}
You can now call this function like so
<?php
echo Mage::helper('function')->test();
?>
출처: http://joe-riggs.com/blog/2011/06/create-global-function-in-magento/
본 사이트 관련:
1. Magento 깊이 이해 - 제9장 - Magento 코드 수정, 확장, 재작성
2. magento 모듈 다시 쓰기
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
콜백 함수를 Angular 하위 구성 요소에 전달이 예제는 구성 요소에 함수를 전달하는 것과 관련하여 최근에 직면한 문제를 다룰 것입니다. 국가 목록을 제공하는 콤보 상자 또는 테이블 구성 요소. 지금까지 모든 것이 구성 요소 자체에 캡슐화되었으며 백엔드에 대한 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.