Where is file /libraries/fof40/Utils/helpers.php ? #37664
-
@nikosdion |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
This file is not part of Joomla itself, it belongs to FOF 4.0 which is a product of my company, Akeeba Ltd. You can find its repository at https://github.com/akeeba/fof. The file you are looking for is https://github.com/akeeba/fof/blob/development/fof/Utils/helpers.php (note that the development branch is FOF 4.x, the default branch of the repository is the old 3.x branch). I also need to warn you that FOF is now considered deprecated and will become End of Life on August 17th, 2023 when Joomla 3 itself becomes End of Life. We have moved the development of all of our Joomla 4 software to the native Joomla 4 MVC. |
Beta Was this translation helpful? Give feedback.
-
@nibra Where do you think to place the function? function isTrue($value){
if($value === false || $value === null || $value == 0 || $value == '' || $value == 'false' || $value == '0'
|| $value == 'disabled' || $value == 'off' || $value == 'no' || $value == 'none')
return false;
return true;
} This is an approximate writing of the function. But the need for such a feature in Joomla is obvious. |
Beta Was this translation helpful? Give feedback.
This file is not part of Joomla itself, it belongs to FOF 4.0 which is a product of my company, Akeeba Ltd. You can find its repository at https://github.com/akeeba/fof. The file you are looking for is https://github.com/akeeba/fof/blob/development/fof/Utils/helpers.php (note that the development branch is FOF 4.x, the default branch of the repository is the old 3.x branch).
I also need to warn you that FOF is now considered deprecated and will become End of Life on August 17th, 2023 when Joomla 3 itself becomes End of Life. We have moved the development of all of our Joomla 4 software to the native Joomla 4 MVC.