=== Safe Function Call === Contributors: coffee2code Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=6ARCFJ9TX3522 Tags: function, template, plugin, error, coffee2code License: GPLv2 or later License URI: https://www.gnu.org/licenses/gpl-2.0.html Requires at least: 1.5 Tested up to: 5.1 Stable tag: 1.2.7 Safely and easily call functions that may not be available (such as those provided by a plugin that gets deactivated) == Description == Safely call a function, class method, or object method in a manner that doesn't generate errors if those plugins cease to exist. Various helper functions are provided that provide handy variations of this theme: * `_sfc()`: Safely call a function and get its return value * `_sfce()`: Safely call a function and echo its return value * `_sfcf()`: Safely call a function; if it doesn't exist, then a fallback function (if specified) is called * `_sfcm()`: Safely call a function; if it doesn't exist, then echo a message (if provided) Let's assume you had something like this in a template: `` If you deactivated the plugin that provided `list_cities()`, your site would generate an error when that template is accessed. You can instead use `_sfc()`, which is provided by this plugin to call other functions, like so: `` That will simply do nothing if the `list_cities()` function is not available. If you'd rather display a message when the function does not exist, use `_sfcm()` instead, like so: `` In this case, if `list_cities()` is not available, the text "The cities listing is temporarily disabled." will be displayed. If you'd rather call another function when the function does not exist, use _sfcf() instead, like so: `` In the event you want to safely call a function and echo its value, you can use `_sfce()` like so: `` Which is roughly equivalent to doing : `` Links: [Plugin Homepage](http://coffee2code.com/wp-plugins/safe-function-call/) | [Plugin Directory Page](https://wordpress.org/plugins/safe-function-call/) | [GitHub](https://github.com/coffee2code/safe-function-call/) | [Author Homepage](http://coffee2code.com) == Installation == 1. Install via the built-in WordPress plugin installer. Or download and unzip `safe-function-call.zip` inside the plugins directory for your site (typically `wp-content/plugins/`) 1. Activate the plugin through the 'Plugins' admin menu in WordPress 1. Use any of the four functions provided by this plugin as desired == Frequently Asked Questions == = Do the functions provided by this plugin capture any error messages generated by the specified function? = No. = Why would I use any of these functions instead of using `function_exists()`/`method_exists()` directly? = The functions provided by this plugin provide a more concise syntax for checking for function existence (but they do use `function_exists()`/`method_exists()` under the hood). `_sfce()` will both echo and return the echoed value, which may be of use in certain circumstances. And also, since the callback to be safely called is passed as an argument, it can be easily and more concisely parameterized. = Does this plugin include unit tests? = Yes. == Template Tags == The plugin provides four functions for your use. *Note: These functions are not limited to use in templates* = Functions = * `` This will safely invoke the specified callback. You can specify an arbitrary number of additional arguments that will get passed to it. If the callback does not exist, nothing is displayed and no error is generated. * `` The same as `_sfc()` except that it echoes the return value of the callback before returning that value. * `` The same as `_sfc()` except that it invokes the fallback callback (if it exists) if the callback does not exist. `$function_name_if_missing()` is sent `$function_name` as its first argument, and then subsequently all arguments that would have otherwise been sent to `$function_name()`. * `` The same as `_sfc()` except that it displays a message (the value of `$message_if_missing`), if the callback does not exist. = Arguments = * `$callback` A string representing the name of the function to be called, or an array of a class or object and its method (as can be done for `add_action()`/`add_filter()`) * `$message_if_missing` (For `_sfcm()` only.) The message to be displayed if `$function_name()` does not exist as a function. * `$fallback_callback` (For `_sfcf()` only.) The function to be called if the callback does not exist. = Examples = * `` "Austin, Dallas, Fort Worth" * `` "Austin, Dallas, Fort Worth" * `` "Austin, Dallas, Fort Worth" * `` "" * `` "Austin, Dallas, Fort Worth" * `` "Unable to list cities at the moment" * `` "Houston" * `` == Changelog == = 1.2.7 (2019-02-06) = * New: Add CHANGELOG.md file and move all but most recent changelog entries into it * README.md: * New: Add instructions for use as a general PHP library * New: Add link to plugin's WordPress Plugin Directory page * Change: Split paragraph in README.md's "Support" section into two * Change: Note compatibility through WP 5.1+ * Change: Update copyright date (2019) * Change: Update License URI to be HTTPS = 1.2.6 (2018-01-02) = * New: Add README.md * Change: Remove check that prevented use if `ABSPATH` isn't defined, allowing use of the code outside WordPress * Change: Unit tests: Minor whitespace changes * Change: Add GitHub link to readme * Change: Note compatibility through WP 4.9+ * Change: Update copyright date (2018) * Change: Unit tests: Add comments to denote groupings of unit tests testing a given function = 1.2.5 (2017-01-27) = * Change: Default `WP_TESTS_DIR` to `/tmp/wordpress-tests-lib` rather than erroring out if not defined via environment variable. * Change: Enable more error output for unit tests. * Change: Note compatibility through WP 4.7+. * Change: Minor inline code documentation reformatting. * Change: Minor readme.txt improvements. * Change: Update copyright date (2017). * Change: Prevent direct invocation of test file. * Change: Add 'Text Domain' to plugin header. * New: Add LICENSE file. * New: Add empty index.php to prevent files from being listed if web server has enabled directory listings. _Full changelog is available in [CHANGELOG.md](https://github.com/coffee2code/safe-function-call/blob/master/CHANGELOG.md)._ == Upgrade Notice == = 1.2.7 = Trivial update: created CHANGELOG.md to store historical changelog outside of readme.txt, noted compatibility through WP 5.1+, and updated copyright date (2019) = 1.2.6 = Trivial update: made script usable outside of PHP, added README.md and GitHub link, noted compatibility through WP 4.9+, and updated copyright date = 1.2.5 = Trivial update: tweaked readme, changed unit test bootstrap, noted compatibility through WP 4.7+, and updated copyright date = 1.2.4 = Trivial update: noted compatibility through WP 4.4+ and updated copyright date = 1.2.3 = Trivial update: noted compatibility through WP 4.3+ = 1.2.2 = Trivial update: noted compatibility through WP 4.1+ and updated copyright date = 1.2.1 = Trivial update: noted compatibility through WP 4.0+; added plugin icon. = 1.2 = Recommended update: added support for full callback usage; improved documentation; added unit tests; noted compatibility through WP 3.8+ = 1.1.7 = Trivial update: noted compatibility through WP 3.5+ = 1.1.6 = Trivial update: noted compatibility through WP 3.4+; explicitly stated license = 1.1.5 = Trivial update: noted compatibility through WP 3.3+ and minor code documentation formatting changes (spacing) = 1.1.4 = Trivial update: noted compatibility through WP 3.2+ and minor code formatting changes (spacing) = 1.1.3 = Trivial update: documentation tweaks = 1.1.2 = Trivial update: noted compatibility through WP 3.1+ and updated copyright date = 1.1.1 = Minor update. Wrapped functions in if(function_exists()) checked; noted compatibility with WP 3.0+.