web/wp-includes/cron.php
branchwordpress
changeset 132 4d4862461b8d
parent 109 03b0d1493584
equal deleted inserted replaced
131:a4642baaf829 132:4d4862461b8d
     6  */
     6  */
     7 
     7 
     8 /**
     8 /**
     9  * Schedules a hook to run only once.
     9  * Schedules a hook to run only once.
    10  *
    10  *
    11  * Schedules a hook which will be executed once by the Wordpress actions core at
    11  * Schedules a hook which will be executed once by the WordPress actions core at
    12  * a time which you specify. The action will fire off when someone visits your
    12  * a time which you specify. The action will fire off when someone visits your
    13  * WordPress site, if the schedule time has passed.
    13  * WordPress site, if the schedule time has passed.
    14  *
    14  *
    15  * @since 2.1.0
    15  * @since 2.1.0
    16  * @link http://codex.wordpress.org/Function_Reference/wp_schedule_single_event
    16  * @link http://codex.wordpress.org/Function_Reference/wp_schedule_single_event
   391 
   391 
   392 // stub for checking server timer accuracy, using outside standard time sources
   392 // stub for checking server timer accuracy, using outside standard time sources
   393 function check_server_timer( $local_time ) {
   393 function check_server_timer( $local_time ) {
   394 	return true;
   394 	return true;
   395 }
   395 }
   396 
       
   397 ?>