• Also, all your functions are hard-coded, without any ability to call them without dying.
    i.e. we want:

    $res = check_api_listener();
    ...
    $another = check_api_activation();
    ...etc..

    on the same page request…
    however, they are dying…

    why you not put two different functions inside $this->check_api_listener();, like:

    function check_api_listener(){
       check_api_listener_BASE_FUNC();   //and we could call that func too in our plugins
       die(); ...
    }

    so,please make the plugin as more hook-able as you can.

    • This topic was modified 8 years, 4 months ago by tazotodua.
Viewing 1 replies (of 1 total)
  • Plugin Support mbrsolution

    (@mbrsolution)

    Thank you for your suggestions. I have submitted a message to the developers to investigate further your request.

    Kind regards

Viewing 1 replies (of 1 total)

The topic ‘why no functions?’ is closed to new replies.