コード例 #1
0
/**
 * The bb-config.php location field.
 *
 * @since 1.6.0
 *
 * @uses checked() To display the checked attribute.
 * @uses bp_get_option() To get the config location.
 * @uses bp_form_option() To get the sanitized form option.
 */
function bp_admin_setting_callback_bbpress_configuration()
{
    $config_location = bp_get_option('bb-config-location');
    $file_exists = (bool) (file_exists($config_location) || is_file($config_location));
    ?>

	<input name="bb-config-location" type="text" id="bb-config-location" value="<?php 
    bp_form_option('bb-config-location', '');
    ?>
" class="medium-text" style="width: 300px;" />

	<?php 
    if (false === $file_exists) {
        ?>

		<a class="button" href="<?php 
        bp_admin_url('admin.php?page=bb-forums-setup&repair=1');
        ?>
" title="<?php 
        esc_attr_e('Attempt to save a new config file.', 'buddypress');
        ?>
"><?php 
        _e('Repair', 'buddypress');
        ?>
</a>
		<span class="attention"><?php 
        _e('File does not exist', 'buddypress');
        ?>
</span>

	<?php 
    }
    ?>

	<p class="description"><?php 
    _e('Absolute path to your bbPress configuration file.', 'buddypress');
    ?>
</p>

<?php 
}
コード例 #2
0
function bp_forums_bbpress_install_wizard()
{
    $post_url = network_admin_url('admin.php?page=bb-forums-setup');
    $step = isset($_REQUEST['step']) ? $_REQUEST['step'] : '';
    switch ($step) {
        case 'existing':
            if (isset($_REQUEST['doinstall']) && 1 == (int) $_REQUEST['doinstall']) {
                if (!bp_forums_configure_existing_install()) {
                    _e('The bb-config.php file was not found at that location, please try again.', 'buddypress');
                } else {
                    ?>
					<h3><?php 
                    _e('Forums were set up correctly using your existing bbPress install!', 'buddypress');
                    ?>
</h3>
					<p><?php 
                    _e('BuddyPress will now use its internal copy of bbPress to run the forums on your site. If you wish, you can remove your old bbPress installation files, as long as you keep the bb-config.php file in the same location.', 'buddypress');
                    ?>
</p><?php 
                }
            } else {
                ?>

					<form action="" method="post">
						<h3><?php 
                _e('Existing bbPress Installation', 'buddypress');
                ?>
</h3>
						<p><?php 
                _e("BuddyPress can make use of your existing bbPress install. Just provide the location of your <code>bb-config.php</code> file, and BuddyPress will do the rest.", 'buddypress');
                ?>
</p>
						<p><label><code>bb-config.php</code> file location:</label><br /><input style="width: 50%" type="text" name="bbconfigloc" id="bbconfigloc" value="<?php 
                echo str_replace('buddypress', '', $_SERVER['DOCUMENT_ROOT']);
                ?>
" /></p>
						<p><input type="submit" class="button-primary" value="<?php 
                _e('Complete Installation', 'buddypress');
                ?>
" /></p>
						<input type="hidden" name="step" value="existing" />
						<input type="hidden" name="doinstall" value="1" />
						<?php 
                wp_nonce_field('bp_forums_existing_install_init');
                ?>
					</form>

				<?php 
            }
            break;
        case 'new':
            if (isset($_REQUEST['doinstall']) && 1 == (int) $_REQUEST['doinstall']) {
                $result = bp_forums_bbpress_install();
                switch ($result) {
                    case 1:
                        _e('<p>All done! Configuration settings have been saved to the file <code>bb-config.php</code> in the root of your WordPress install.</p>', 'buddypress');
                        break;
                    default:
                        // Just write the contents to screen
                        _e('<p>A configuration file could not be created. No problem, but you will need to save the text shown below into a file named <code>bb-config.php</code> in the root directory of your WordPress installation before you can start using the forum functionality.</p>', 'buddypress');
                        ?>

						<textarea style="display:block; margin-top: 30px; width: 80%;" rows="50"><?php 
                        echo htmlspecialchars($result);
                        ?>
</textarea>

					<?php 
                        break;
                }
            } else {
                ?>

				<h3><?php 
                _e('New bbPress Installation', 'buddypress');
                ?>
</h3>
				<p><?php 
                _e("You've decided to set up a new installation of bbPress for forum management in BuddyPress. This is very simple and is usually just a one click\n\t\t\t\tprocess. When you're ready, hit the link below.", 'buddypress');
                ?>
</p>
				<p><a class="button-primary" href="<?php 
                echo wp_nonce_url($post_url . '&step=new&doinstall=1', 'bp_forums_new_install_init');
                ?>
"><?php 
                _e('Complete Installation', 'buddypress');
                ?>
</a></p>

				<?php 
            }
            break;
        default:
            if (!file_exists(BP_PLUGIN_DIR . '/bp-forums/bbpress/')) {
                ?>

				<div id="message" class="error">
					<p><?php 
                printf(__('bbPress files were not found. To install the forums component you must download a copy of bbPress and make sure it is in the folder: "%s"', 'buddypress'), 'wp-content/plugins/buddypress/bp-forums/bbpress/');
                ?>
</p>
				</div>

			<?php 
            } else {
                // Include the plugin install
                add_thickbox();
                wp_enqueue_script('plugin-install');
                wp_admin_css('plugin-install');
                ?>

				<div style="width: 45%; float: left;  margin-top: 20px;">
					<h3><?php 
                _e('Forums for Groups', 'buddypress');
                ?>
</h3>

					<p><?php 
                _e('Give each individual group its own discussion forum. Choose this if you\'d like to keep your members\' conversations separated into distinct areas.', 'buddypress');
                ?>
</p>
					<p class="description"><?php 
                _e('You may use an existing bbPress installation if you have one.', 'buddypress');
                ?>
</p>

					<h4 style="margin-bottom: 10px;"><?php 
                _e('Features', 'buddypress');
                ?>
</h4>
					<ul class="description" style="list-style: square; margin-left: 30px;">
						<li><?php 
                _e('Group Integration', 'buddypress');
                ?>
</p></li>
						<li><?php 
                _e('Member Profile Integration', 'buddypress');
                ?>
</p></li>
						<li><?php 
                _e('Activity Stream Integration', 'buddypress');
                ?>
</p></li>
						<li><?php 
                _e('@ Mention Integration', 'buddypress');
                ?>
</p></li>
					</ul>

					<div>
						<a class="button button-primary" href="<?php 
                echo $post_url . '&step=new';
                ?>
"><?php 
                _e('Install Group Forums', 'buddypress');
                ?>
</a> &nbsp;
						<a class="button" href="<?php 
                echo $post_url . '&step=existing';
                ?>
"><?php 
                _e('Use Existing Installation', 'buddypress');
                ?>
</a>
					</div>
				</div>

				<div style="width: 45%; float: left; margin: 20px 0 20px 20px; padding: 0 20px 20px 20px; border: 1px solid #ddd; background-color: #fff;">
					<h3><?php 
                _e('New! Site Wide Forums', 'buddypress');
                ?>
</h3>
					<p><?php 
                _e('Your site will have central forums that are not isolated to any specific group. Choose this if you\'d like to have a central forum area for your members.', 'buddypress');
                ?>
</p>
					<p class="description"><?php 
                _e('You may activate both Group and Site Wide forums, but this may create a poor experience for your members.', 'buddypress');
                ?>
</p>

					<h4 style="margin-bottom: 10px;"><?php 
                _e('Features', 'buddypress');
                ?>
</h4>
					<ul class="description" style="list-style: square; margin-left: 30px;">
						<li><?php 
                _e('Central Discussion Area', 'buddypress');
                ?>
</p></li>
						<li><?php 
                _e('Forum Plugins Available', 'buddypress');
                ?>
</p></li>
						<li><?php 
                _e('Activity Stream Integration', 'buddypress');
                ?>
</p></li>
						<li><?php 
                _e('@ Mention Integration', 'buddypress');
                ?>
</p></li>
					</ul>
					<div>
						<a class="button thickbox button-primary" href="<?php 
                bp_admin_url(add_query_arg(array('tab' => 'plugin-information', 'plugin' => 'bbpress', 'TB_iframe' => 'true', 'width' => '640', 'height' => '500'), 'plugin-install.php'));
                ?>
"><?php 
                _e('Install Site Wide Forums', 'buddypress');
                ?>
</a> &nbsp;
					</div>
				</div>

			<?php 
            }
            break;
    }
}