You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
592 B
37 lines
592 B
<?php
|
|
|
|
/**
|
|
* Fired during plugin activation
|
|
*
|
|
* @link https://kolarix.com/biztime
|
|
* @since 1.0.0
|
|
*
|
|
* @package BizTime
|
|
* @subpackage BizTime/includes
|
|
*/
|
|
|
|
/**
|
|
* Fired during plugin activation.
|
|
*
|
|
* This class defines all code necessary to run during the plugin's activation.
|
|
*
|
|
* @since 1.0.0
|
|
* @package BizTime
|
|
* @subpackage BizTime/includes
|
|
* @author Kolarix <biztime@kolarix.com>
|
|
*/
|
|
class Biztime_Activator {
|
|
|
|
/**
|
|
* Short Description. (use period)
|
|
*
|
|
* Long Description.
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
public static function activate() {
|
|
|
|
}
|
|
|
|
}
|