I'm developing a couple of open-source plugins and a theme (all part of a "suite") that all use the same third party PHP library. I'm wondering what is the best way to include it in Wordpress. Here are some thoughts:

  • put it in one of the plugins and require that plugin to be installed and activated
  • create a special "core" plugin that does nothing but including it
  • put it directly in wp-content

Any thoughts on that matter?

link|improve this question
Is this development for private use on single site or multiple sites / pubic release? – Rarst Oct 21 '11 at 13:21
It's for a suite of open source plugins. I'm updating the question to point that out. – gou1 Oct 21 '11 at 13:31
feedback

2 Answers

up vote 0 down vote accepted

If each plugin/theme functions on its own, then you should probably drop the the library in every theme/plugin.

Then just check to see if it a class or function from the third-party library exists before requiring it.

<?php
if( class_exists( 'SomeClass' ) )
{
    // require/include here
}

or

<?php
if( function_exists( 'some_function' ) )
{
   // Require/include stuff here
}

Alternatively, you could wrap every function/class/variable/constant from the third party library in a check to see if it exists, like pluggable functions.

If all of the plugins and the theme are dependent on one another, then it doesn't really make much sense to divide them up and you should probably rethink that.

link|improve this answer
Plugins have different features, hence the separation: you only activate what you want. But it all relies on a framework, that why I need to include that library. It has an autoloader, and quite a few classes so checking/requiring for every class would really be a pain. And I can't really drop it in every class because it would register the autoloader several times. Right now the better solution seems to be the "core" plugin. You activate it first so it requires all the 3rd party stuff, and then you select the plugins you want. – gou1 Oct 21 '11 at 14:13
You're thinking about this wrong: just make a bootstrap file, including something you can check, that includes/requires all the classes. Then require that file. One check. Don't count on your users to figure out they need to install second plugin. – Christopher Davis Oct 21 '11 at 14:24
That's precisely my question: whatever the method (plugin, bootstrapper, etc.) where to put the files? – gou1 Oct 21 '11 at 14:38
Oh, I would put them in a library folder in each plugin/theme. Then in your main plugin file, run the check and include them if necessary. – Christopher Davis Oct 21 '11 at 14:56
feedback

Since no official vendor directory exists, I would go for the "core" plugin that does nothing but include the library. You then make your plugins require that core plugin.

Putting the library in one of your real plugins would require the user to have that plugin enabled even though they may never want to use its functionality. A separate core plugin seems cleaner.

Putting it directly in wp-content looks like the worst solution.

link|improve this answer
That's what I was thinking at first too, but I found out it's not sufficient to just put the including of your libraries in one activated plugin: sometimes (eg. when activating it) the file of the "core" plugin won't be required. – gou1 Oct 21 '11 at 15:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.