0

I want to add some more library and helpers file into Pyrocms which is based on codeigniter.Actually i have to add facebook connect and found some good working examples of facebook connect so now i want to implement these codeingiter libraries and other files in Pyrocms.Let let me know where to put these libraries. Your help will be appreciable.

Pramod Kumar Sharma
  • 7,851
  • 5
  • 28
  • 53

1 Answers1

1

since version 1.3.0 addons/default/libraries or addons/shared_addons/libraries for the pro version. (This bit will help on the where to put stuff topic... http://www.pyrocms.com/docs/1.3/manuals/developers/understanding-the-addons-directory )

Then load the lib in your controller, etc as such $this->load->library('cool_facebook_connect_lib'); And, depending on your version you may have to change around a couple lines in MY_loader for it to work, http://www.pyrocms.com/forums/topics/view/18087

Robert
  • 204
  • 1
  • 10