문제

I want to define constants to use in all my project. How to define constant or environment variables to access all over the project without any special declaration ?

도움이 되었습니까?

해결책

Define the constant with const keyword as :

const PATH_EMAIL_IDENTITY = 'trans_email/ident_sales';

To call constant in the same file use : self::PATH_EMAIL_IDENTITY

To call the same constant in another file use : VendorName\ModuleName\Controller\FileName::PATH_EMAIL_IDENTITY

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 magento.stackexchange
scroll top