Current File : /home/pacjaorg/www/copwordpres/wp-content/plugins/download-monitor/src/Shop/functions.php |
<?php
/**
* Formats given price in cents into a pretty price that can be displayed to users.
*
* @param int $price
* @param array $args (see \WPChill\DownloadMonitor\Shop\Helper\Format)
*
* @return string
*/
function dlm_format_money( $price, $args = array() ) {
return \WPChill\DownloadMonitor\Shop\Services\Services::get()->service( 'format' )->money( $price, $args );
}
/**
* @param array $values ([ 'option_key' => 'option_value' ])
*/
function dlm_checkout_fields( $values = array() ) {
\WPChill\DownloadMonitor\Shop\Services\Services::get()->service( 'checkout_field' )->output_all_fields( $values );
}
/**
* Return if the shop functionality of Download Monitor is enabled
*
* @return bool
*/
function dlm_is_shop_enabled() {
// we don't use the service here because this function needs to before the service is available
$settings = new DLM_Settings_Helper();
return ( 1 == $settings->get_option( 'shop_enabled' ) );
}