I have a question as I need to have a global static variable and I have question is any possibility to add it to the application.ini file, how to do it?
The best solution for me was to create a variable in index.php file. I have added:
defined('VARIABLE_NAME')
|| define('VARIABLE_NAME', 'Something here');
And now I can access to it from everywhere ;D
Thanks a lot!