Click
here to Customize Navigation Menu, In-App Pages or send push notification.
https://developers.facebook.com/docs/apps/register';
}
/**
* Get the settings option array and print one of its values
*/
public function project_id_callback() {
printf(
'',
isset( $this->options['project_id'] ) ? esc_attr( $this->options['project_id'] ) : ''
);
}
/**
* Get the settings option array and print one of its values
*/
public function api_key_callback() {
printf(
'',
isset( $this->options['api_key'] ) ? esc_attr( $this->options['api_key'] ) : ''
);
}
/**
* Get the settings option array and print one of its values
*/
public function api_secret_callback() {
printf(
'',
isset( $this->options['api_secret'] ) ? esc_attr( $this->options['api_secret'] ) : ''
);
}
/**
* Get the settings option array and print one of its values
*/
public function facebook_id_callback() {
printf(
'',
isset( $this->options['facebook_id'] ) ? esc_attr( $this->options['facebook_id'] ) : ''
);
}
/**
* Get the settings option array and print one of its values
*/
public function facebook_secret_callback() {
printf(
'',
isset( $this->options['facebook_secret'] ) ? esc_attr( $this->options['facebook_secret'] ) : ''
);
}
public function fcm_server_key_callback() {
printf(
'',
isset( $this->options['fcm_server_key'] ) ? esc_attr( $this->options['fcm_server_key'] ) : ''
);
}
}
new APPMAKER_WC_Options();