# taskbuilder/1.0.8/includes/wppm_actions.php

Taskbuilder – Project Management &amp; Task Management Tool With Kanban Board, version 1.0.8. 25 lines.

- Page: https://pluginprobe.com/plugins/taskbuilder/1.0.8/code/includes/wppm_actions.php
- Raw: https://pluginprobe.com/plugins/taskbuilder/1.0.8/raw/includes/wppm_actions.php
- Modified: 2021-10-08T04:43:04+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/taskbuilder/1.0.8/code/includes/wppm_actions.php#L10-L20`.

```php
<?php
if ( ! defined( 'ABSPATH' ) ) {
  exit; // Exit if accessed directly
}
if ( ! class_exists( 'WPPM_Actions' ) ) :
  
final class WPPM_Actions {
  // constructor
  public function __construct() {
      add_action( 'init', array( $this, 'wppm_load_actions') );
  }

  // Load actions
  function wppm_load_actions() {
    add_action( 'wppm_cron_daily', array($this,'wppm_check_cron_attachment') );
  }
  
  function wppm_check_cron_attachment(){
    include WPPM_ABSPATH.'includes/actions/wppm_check_cron_attachment.php';
  }

}
endif;

new WPPM_Actions();
```
