PATH:
home
/
letacommog
/
laperouse
/
wp-content
/
plugins
/
woocommerce-unit-of-measure
<?php /** * Plugin Name: WooCommerce Unit Of Measure * Plugin URI: * Description: WooCommerce Unit Of Measure allows the user to add a unit of measure (or any text) after the price on WooCommerce products. * Version: 3.0.2 * Author: Bradley Davis * Author URI: http://bradley-davis.com * License: GPL3 * License URI: http://www.gnu.org/licenses/gpl-3.0.html * Text Domain: woocommerce-uom * WC requires at least: 3.0.0 * WC tested up to: 4.6.1 * * @author Bradley Davis * @category Admin * @package WooCommerce RRP * @since 1.0.0 * * WooCommerce Unit Of Measure. A Plugin that works with the WooCommerce plugin for WordPress. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see http://www.gnu.org/licenses/gpl-3.0.html. */ if ( ! defined( 'ABSPATH' ) ) : exit; // Exit if accessed directly. endif; /** * Check if WooCommerce is active. * * @since 1.0.0 */ if ( in_array( 'woocommerce/woocommerce.php', apply_filters( 'active_plugins', get_option( 'active_plugins' ) ), true ) ) : /** * WooCommerce is installed so it is time to make it all happen. */ uom_class_loader(); endif; /** * Add the classes that make the magic. * * @since 3.0.0 */ function uom_class_loader() { require_once trailingslashit( dirname( __FILE__ ) ) . 'includes/class-wc-uom.php'; }
[+]
..
[-] readme.txt
[edit]
[+]
public
[+]
admin
[-] woocommerce-unit-of-measure.php
[edit]
[-] uninstall.php
[edit]
[+]
includes
[+]
assets
[-] index.php
[edit]
[+]
languages