With callbackfunctions in the same class, I cannot set the following.
private function check_valid_image
{
...
}
I can make it work if I do the following.
function _check_valid_image
{
...
}
Putting an underscore in front of a method name is the same as putting a word in front of you private?
source
share