diff --git a/includes/settings.php b/includes/settings.php index 67d4004..dff2b85 100644 --- a/includes/settings.php +++ b/includes/settings.php @@ -40,6 +40,21 @@ function edd_slm_settings( $settings ) { 'type' => 'text', 'std' => '' ), + array( + 'id' => 'edd_slm_api_license_term', + 'name' => __( 'License Term', 'edd-slm' ), + 'desc' => __( 'How long the license is valid', 'edd-slm' ), + 'type' => 'select', + 'options' => array ( '0000-00-00' => __('Forever', 'edd-slm'), + 730 => __('Two Years', 'edd-slm'), + 365 => __('One Year', 'edd-slm'), + 180 => __('Six Months', 'edd-slm'), + 90 => __('90 Days', 'edd-slm'), + 60 => __('60 Days', 'edd-slm'), + 30 => __('30 Days', 'edd-slm'), + ) + + ), array( 'id' => 'edd_slm_debug', 'name' => __( 'Enable Debug', 'edd-slm' ), @@ -85,4 +100,4 @@ function edd_slm_api_validation() { } return true; -} \ No newline at end of file +}