Bulk Delete WordPress Plugin

Bulk Delete WordPress Plugin v6.0.2

没有下载权限
摘要
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.
代码:
/**
 * 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;
作者
hargrave
浏览
611
扩展类型
zip
文件大小
371.4 KB
首次发布
上次更新
评分 5.00 星 1 个评分
链接失效了吗? 发送消息 给 NP 团队,我们会尽快为您处理!
支持开发者 如果您对测试满意或项目已成功盈利,可点击「更多信息」按钮,通过购买来支持开发者!

最新评论

op bro

来自 hargrave 的更多资源

WooCommerce PDF发票 H
自动创建并附上可完全自定义的PDF发票到已完成或处理中的订单
事件日历短代码和模板专业 – WordPress 插件 H
事件日历短代码和模板专业插件提供高级事件列表设计模板
OS 会员专业版 H
创建并销售任何类型的订阅计划以满足您的业务需求。

相似的资源

360°全景图像查看器 - 适应性WordPress插件 J
360°全景 viewer 将静态平面直角全景摄影用于 WordPress 上
浏览
629
已更新
3D Map Wordpress Plugin - 3D-Mapper T
The 3D map is much more than a simple picture on your website!
浏览
905
已更新
accordion滑块PRO - 响应式图片和视频WordPress插件 T
一个强大而优雅的多媒体accordion,支持图像
浏览
330
已更新
返回
顶部