Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save paulmiller3000/43faec2ba7070c738ec01168eeda8d5d to your computer and use it in GitHub Desktop.
Save paulmiller3000/43faec2ba7070c738ec01168eeda8d5d to your computer and use it in GitHub Desktop.
/**
* Get settings array
*
* @return array
*/
public function get_settings() {
global $current_section;
$prefix = 'p3k_galactica_';
$settings = array();
switch ($current_section) {
case 'log':
$settings = array(
array()
);
break;
default:
include 'partials/p3k-galactica-settings-main.php';
}
return apply_filters( 'woocommerce_get_settings_' . $this->id, $settings, $current_section );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment