English (United Kingdom)
Knowledge Base  >  Vik Restaurants  >  Hooks  >  Export  >  Fetch Supported Driver

apply_filters( 'vikrestaurants_fetch_supported_export_drivers', array $drivers )

Fires while loading the list of supported exporting drivers.


Description

Trigger hook to let the plugins register external drivers to export the restaurant reservations and take-away orders.

This filter should simply return a list of paths to include (as drivers) within the script. The base name of the files to load can specify only letters, numbers and underscores.

Note: at the first execution of the hook the $drivers argument isn't an array.


Parameters

$drivers

(array|null)  The array holding the files of the external drivers to load.


Example

The example below adds support for all the drivers contained in a specific folder of the plugin. Such as:

/wp-content/plugins/vikwp/drivers/

All the PHP files contained within the drivers folder of the VikWP plugin will be loaded.

/**
 * Trigger hook to let the plugins register external drivers
 * as supported exporters.
 *
 * @param  array|null  $drivers  The array holding the drivers to load.
 */
add_filter('vikrestaurants_fetch_supported_export_drivers', function($drivers)
{
    if (!$drivers)
    {
        // first cycle of the filter, init the list of drivers
        $drivers = array();
    }

    // create base path to "drivers" folder contained within the plugin
    $base = dirname(__FILE__) . DIRECTORY_SEPARATOR . 'drivers' . DIRECTORY_SEPARATOR;

    // load all PHP files from "drivers" folder
    $files = glob($base . '*.php');

    // merge existing drivers with this ones
    return array_merge($drivers, $files);
});

Changelog

Version Description
1.0 Introduced.
Last Update: 2021-01-24
Helpful?

This website uses cookies

This website uses cookies and similar technologies. Some of these technologies are necessary for the proper functioning of the website (Essential). Other technologies are used to evaluate user behavior (Analysis), to integrate external media or for advertising purposes. If you agree, these technologies are activated. For details, please refer to the privacy policy. From this same page you can also update/revoke your consent. If you do not give your consent, only cookies with essential functions will be activated.

We use technologies from the USA on our website. If you give your consent, you therefore consent at the same time to your data being transferred to the USA. We would like to point out that the USA does not have a level of data protection comparable to that of the EU and that any US company can be obliged by state authorities to hand over your data without you having any effective legal protection against this.