Bulk Delete WordPress Plugin

Bulk Delete WordPress Plugin v6.0.2

No permission to download
Short Description
BulkWP BulkDelete Autoloader for PSR-4, seamlessly integrates namespaces and follows WordPress coding standards. Easily configure class file paths with addNamespace method for efficient PHP autoloading in your projects.
Code:
/**
 * Autoloader for Bulk Delete, based on the PSR-4 general purpose implementation.
 *
 * @see http://www.php-fig.org/psr/psr-4/
 *
 * This differs from WordPress coding standard in the following ways.
 *
 * - Class name and directory names use Snake case.
 * - Use of namespaces.
 *
 * Given a foo-bar package of classes in the file system at the following
 * paths ...
 *
 *     /path/to/packages/foo-bar/
 *         src/
 *             Baz.php             # Foo\Bar\Baz
 *             Qux/
 *                 Quux.php        # Foo\Bar\Qux\Quux
 *         tests/
 *             BazTest.php         # Foo\Bar\BazTest
 *             Qux/
 *                 QuuxTest.php    # Foo\Bar\Qux\QuuxTest
 *
 * ... add the path to the class files for the \Foo\Bar\ namespace prefix
 * as follows:
 *
 *      <?php
 *      // instantiate the loader
 *      $loader = new \BulkWP\BulkDelete\BulkDeleteAutoloader;
 *
 *      // register the autoloader
 *      $loader->register();
 *
 *      // register the base directories for the namespace prefix
 *      $loader->addNamespace('Foo\Bar', '/path/to/packages/foo-bar/src');
 *      $loader->addNamespace('Foo\Bar', '/path/to/packages/foo-bar/tests');
 *
 * The following line would cause the autoloader to attempt to load the
 * \Foo\Bar\Qux\Quux class from /path/to/packages/foo-bar/src/Qux/Quux.php:
 *
 *      <?php
 *      new \Foo\Bar\Qux\Quux;
 *
 * The following line would cause the autoloader to attempt to load the
 * \Foo\Bar\Qux\QuuxTest class from /path/to/packages/foo-bar/tests/Qux/QuuxTest.php:
 *
 *      <?php
 *      new \Foo\Bar\Qux\QuuxTest;
Author
hargrave
Views
609
Extension type
zip
File size
371.4 KB
First release
Last update
Ratings 5.00 star(s) 1 ratings
Link was Broken? Send message to the Website Team and we will assist you quickly!
Support Developer If you are satisfied with the test or your project has earned you money, Click the More Information button to support the developer by purchasing.

Latest reviews

op bro

More resources from hargrave

Industroz - Factory & Industrial WordPress Theme H
a perfect solution for creating all types of industry, engineering or machinery businesses.
Code Engine Pro H
Code Engine Pro 0.5.3 Nulled
Bring smart PHP snippet management to your WordPress.
Outgrid - Multi-Purpose Elementor WordPress Theme H
Outgrid has professional, pixel perfect and clean modern layouts for almost any website

Similar resources

360° Panoramic Image Viewer - Responsive WordPress Plugin J
360° Flat Panoramic Viewer takes static flat rectilinear panorama photography and uses WordPress to
3D Map Wordpress Plugin - 3D-Mapper T
The 3D map is much more than a simple picture on your website!
Accordion Slider PRO - Responsive Image And Video WordPress Plugin T
A powerful and elegant multimedia accordion with support for images
Back
Top