ACF_Admin_Tool_Export::initialize
initialize
This function will initialize the admin tool
Method of the class: ACF_Admin_Tool_Export{}
No Hooks.
Returns
null. Nothing (null).
Usage
$ACF_Admin_Tool_Export = new ACF_Admin_Tool_Export(); $ACF_Admin_Tool_Export->initialize();
Changelog
| Since 5.6.3 | Introduced. |
ACF_Admin_Tool_Export::initialize() ACF Admin Tool Export::initialize code ACF 6.0.4
function initialize() {
// vars
$this->name = 'export';
$this->title = __( 'Export Field Groups', 'acf' );
// active
if ( $this->is_active() ) {
$this->title .= ' - ' . __( 'Generate PHP', 'acf' );
}
}