* * Gitium is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * any later version. * * Gitium is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Gitium. If not, see . * * @package Gitium */ class Gitium_Submenu_Settings extends Gitium_Menu { public function __construct() { parent::__construct( $this->gitium_menu_slug, $this->settings_menu_slug ); add_action( GITIUM_ADMIN_MENU_ACTION, array( $this, 'admin_menu' ) ); add_action( 'admin_init', array( $this, 'save' ) ); add_action( 'admin_init', array( $this, 'regenerate_webhook' ) ); add_action( 'admin_init', array( $this, 'regenerate_public_key' ) ); } public function admin_menu() { $submenu_hook = add_submenu_page( $this->menu_slug, 'Settings', __( 'Settings' ), GITIUM_MANAGE_OPTIONS_CAPABILITY, $this->submenu_slug, array( $this, 'page' ) ); new Gitium_Help( $submenu_hook, 'settings' ); } public function regenerate_webhook() { $gitium_regen_webhook = filter_input(INPUT_POST, 'GitiumSubmitRegenerateWebhook', FILTER_SANITIZE_FULL_SPECIAL_CHARS); if ( ! isset( $gitium_regen_webhook ) ) { return; } check_admin_referer( 'gitium-settings' ); gitium_get_webhook_key( true ); $this->success_redirect( __( 'Webhook URL regenerates. Please make sure you update any external references.', 'gitium' ), $this->settings_menu_slug ); } public function regenerate_public_key() { $submit_regenerate_pub_key = filter_input(INPUT_POST, 'GitiumSubmitRegeneratePublicKey', FILTER_SANITIZE_FULL_SPECIAL_CHARS); if ( ! isset( $submit_regenerate_pub_key ) ) { return; } check_admin_referer( 'gitium-settings' ); gitium_get_keypair( true ); $this->success_redirect( __( 'Public key successfully regenerated.', 'gitium' ), $this->settings_menu_slug ); } private function show_webhook_table_webhook_url() { ?>

Merge changes


github or bitbucket.', 'gitium' ); ?>

show_webhook_table_webhook_url() ?> show_webhook_table_public_key(); ?>
git->set_gitignore( $gitignore_content ) ) { gitium_commit_and_push_gitignore_file(); $this->success_redirect( __( 'The file `.gitignore` is saved!', 'gitium' ), $this->settings_menu_slug ); } else { $this->redirect( __( 'The file `.gitignore` could not be saved!', 'gitium' ), false, $this->settings_menu_slug ); } } public function page() { $this->show_message(); ?>

show_webhook_table(); ?>