malin Posted July 23, 2018 Share Posted July 23, 2018 How to register a function to $ca? ----- if ($ca->isLoggedIn()) { function fetch_qi_cloud_dedicate_server_list(){ echo "fetch_qi_cloud_dedicate_server_list"; $params = array( 'page' => 1, 'page_size' => 10 ); $res = fetch_qicloud_dedicate_server_list($_COOKIE['action_fetch_qi_cloud_token'], $params); var_dump($res); } $ca->registerPlugin('function', 'fetch_qi_cloud_dedicate_server_list', 'fetch_qi_cloud_dedicate_server_list'); ----- I use the `registerPlugin`, seems do not work, I want to register a function, then the template can use it. 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.