コード例 #1
0
ファイル: bcp-filters.php プロジェクト: poweronio/mbsite
/**
 * BCP Member Customisation
 * 
 * adds css style via 'bp_before_member_header' action
 * to attach the styling the user has made into
 * his profile
 *
 * @package Gears
 * @since 2.0
 * @author dunhakdis
 */
function bcp_member_customisation()
{
    if (function_exists('bcp_get_customisation_data')) {
        $customise = bcp_get_customisation_data();
        $solid = '';
        // disable gradient
        return;
        ?>
		<style scoped id="bcp-customise">
		#item-header-avatar,#item-header-avatar-mobile{
			<?php 
        if ($customise->mode == 'gradient') {
            ?>
				filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='<?php 
            echo $customise->color2;
            ?>
',endColorstr='<?php 
            echo $customise->color2;
            ?>
');
				background: -webkit-linear-gradient(<?php 
            echo $customise->color1;
            ?>
 0%,<?php 
            echo $customise->color2;
            ?>
 100%);
				background: -moz-linear-gradient(top,<?php 
            echo $customise->color1;
            ?>
, <?php 
            echo $customise->color2;
            ?>
);
				background: <?php 
            echo $customise->color1;
            ?>
				<?php 
        } else {
            $solid = '!important';
        }
        ?>
					background: <?php 
        echo $customise->color1 . $solid;
        ?>
				}
				#item-header-avatar-mobile,
				#item-header-avatar-mobile #item-name h1 a{
					color: <?php 
        echo $customise->foreground;
        ?>
;
				}
				</style>
		<?php 
    }
    return;
}
コード例 #2
0
ファイル: customise.php プロジェクト: poweronio/mbsite
<?php

/**
 * 
 */
$customise = bcp_get_customisation_data();
?>
<div class="customise-settings">
	<form class="form-horizontal" role="role" action="" method="post">
		<div class="form-group">
			<div class="col-sm-3 control-label"><h5><?php 
_e('Mode', 'gears');
?>
</h5></div>
			<div class="col-sm-9">
				<div class="col-sm-3">
					<label for="bp-cover-photo-user-background-gradient">
						<input <?php 
if ($customise->mode === 'gradient') {
    echo 'checked';
}
?>
 value="gradient" id="bp-cover-photo-user-background-gradient" type="radio" name="bp-cover-photo-user-background-mode" /> 
						<span class="small"><?php 
_e('Gradient', 'bp-cover-photo');
?>
</span>
					</label>
				</div>	
				<div class="col-sm-9">
					<label for="bp-cover-photo-user-background-solid">