advisor.php
2 years ago
chatbot.php
1 year ago
discussions.php
2 years ago
files.php
2 years ago
security.php
2 years ago
tasks.php
2 years ago
utilities.php
2 years ago
wand.php
2 years ago
utilities.php
20 lines
| 1 | <?php |
| 2 | |
| 3 | class Meow_MWAI_Modules_Utilities { |
| 4 | private $core = null; |
| 5 | |
| 6 | public function __construct() { |
| 7 | global $mwai_core; |
| 8 | $this->core = $mwai_core; |
| 9 | |
| 10 | // Add meta boxes with AI Engine when needed |
| 11 | if ( false ) { |
| 12 | add_action( 'add_meta_boxes', array( $this, 'add_meta_boxes' ) ); |
| 13 | } |
| 14 | } |
| 15 | |
| 16 | function add_meta_boxes() { |
| 17 | |
| 18 | } |
| 19 | |
| 20 | } |