| Current Path : /home/ereika83/www/wp-content/plugins/project-panorama/lib/pro/ |
| Current File : /home/ereika83/www/wp-content/plugins/project-panorama/lib/pro/psp-pro-init.php |
<?php
// Pro specific functionality
$pro_includes = array(
'psp-pro-shortcodes',
'psp-notifications',
'psp-ajax'
);
foreach($pro_includes as $include) {
include_once($include.'.php');
}
// Load custom fields via hook so these can be adjusted later
add_action('init', 'psp_load_custom_fields',999);
function psp_load_custom_fields() {
if(function_exists("register_field_group")) {
// Load the fields via psp_load_field_template so users can import their own
psp_load_field_template('overview');
psp_load_field_template('milestones');
psp_load_field_template('phases');
}
}
?>