You appear to be a bot. Output may be restricted
Description
Return the bw_scheduled default option value
Usage
$string = oik_batchmove_scheduled_option_default( $option );
Parameters
- $option
- ( string ) required – the name of the settings field
Returns
string the default value or nullSource
File name: oik-batchmove/admin/oik-batchmove-cron.phpLines:
1 to 12 of 12
function oik_batchmove_scheduled_option_default( $option ) { $scheduled_option_defaults = array( "look_back" => "-450 days" , "reschedule" => "451 days" , "title_prefix" => __( "From the archives: ", "oik-batchmove" ) , "prepend_content_pre_date" => __( "Previously published on ", "oik-batchmove" ) , "prepend_content_post_date" => __( "<br />", "oik-batchmove" ) , "activated" => false , "reschedule_time" => null ); $value = bw_array_get( $scheduled_option_defaults, $option, null ); return( $value ); }View on GitHub View on Trac