CodeIgniter Third party class not loading

后端 未结 3 1780
生来不讨喜
生来不讨喜 2021-02-04 09:00

I am trying to implement Dashboard widget class (found here: http://harpanet.com/programming/php/codeigniter/dashboard/index#installation) but it is giving me error Unable

3条回答
  •  一个人的身影
    2021-02-04 10:02

    You have to create a library that initialize the third party class:

    for Eg:

    --in library create a file named mydash.php --

    load the library using:

    $this->load->library('mydash');
    

    then you are able to use the Dash class. Also able to load library in autoload.

    Thank you...

提交回复
热议问题