array_keys( $models_libraries->get_libraries() ), ); } /** * Function to get all settings * * @return array */ public function get() { $settings = wp_parse_args( $this->get_all(), $this->get_args() ); return $settings; } /** * Function to save settings * * @param array $settings Settings to be saved. * @return boolean */ public function save( $settings = null ) { return $this->save_all( $settings ); } /** * Function to delete table * * @return void */ public function delete_table() { $this->delete_all(); } public static function instance() { if ( is_null( self::$instance ) ) { self::$instance = new self(); } return self::$instance; } }