• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP bp_attachments_get_template_part函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了PHP中bp_attachments_get_template_part函数的典型用法代码示例。如果您正苦于以下问题:PHP bp_attachments_get_template_part函数的具体用法?PHP bp_attachments_get_template_part怎么用?PHP bp_attachments_get_template_part使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



在下文中一共展示了bp_attachments_get_template_part函数的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。

示例1: bp_avatar_template_check

/**
 * Trick to check if the theme's BuddyPress templates are up to date.
 *
 * If the "avatar templates" are not including the new template tag, this will
 * help users to get the avatar UI.
 *
 * @since  2.3.0
 */
function bp_avatar_template_check()
{
    if (!bp_avatar_is_front_edit()) {
        return;
    }
    if (!did_action('bp_attachments_avatar_check_template')) {
        bp_attachments_get_template_part('avatars/index');
    }
}
开发者ID:toby-bushell,项目名称:triumph,代码行数:17,代码来源:bp-core-avatars.php


示例2: bp_attachments_get_template_part

<div class="bp-avatar-status"></div>

<script type="text/html" id="tmpl-bp-avatar-nav">
	<a href="{{data.href}}" class="bp-avatar-nav-item" data-nav="{{data.id}}">{{data.name}}</a>
</script>

<?php 
bp_attachments_get_template_part('uploader');
?>

<?php 
bp_attachments_get_template_part('avatars/crop');
?>

<?php 
bp_attachments_get_template_part('avatars/camera');
?>

<script id="tmpl-bp-avatar-delete" type="text/html">
	<# if ( 'user' === data.object ) { #>
		<p><?php 
_e("If you'd like to delete your current profile photo but not upload a new one, please use the delete profile photo button.", 'buddypress');
?>
</p>
		<p><a class="button edit" id="bp-delete-avatar" href="#" title="<?php 
esc_attr_e('Delete Profile Photo', 'buddypress');
?>
"><?php 
esc_html_e('Delete My Profile Photo', 'buddypress');
?>
</a></p>
开发者ID:mawilliamson,项目名称:wordpress,代码行数:31,代码来源:index.php


示例3: user_admin_avatar_metabox

        /**
         * Render the Avatar metabox to moderate inappropriate images.
         *
         * @since 2.0.0
         *
         * @param WP_User|null $user The WP_User object for the user being edited.
         */
        public function user_admin_avatar_metabox($user = null)
        {
            if (empty($user->ID)) {
                return;
            }
            ?>

		<div class="avatar">

			<?php 
            echo bp_core_fetch_avatar(array('item_id' => $user->ID, 'object' => 'user', 'type' => 'full', 'title' => $user->display_name));
            ?>

			<?php 
            if (bp_get_user_has_avatar($user->ID)) {
                $query_args = array('user_id' => $user->ID, 'action' => 'delete_avatar');
                if (!empty($_REQUEST['wp_http_referer'])) {
                    $query_args['wp_http_referer'] = urlencode(wp_unslash($_REQUEST['wp_http_referer']));
                }
                $community_url = add_query_arg($query_args, buddypress()->members->admin->edit_profile_url);
                $delete_link = wp_nonce_url($community_url, 'delete_avatar');
                ?>

				<a href="<?php 
                echo esc_url($delete_link);
                ?>
" title="<?php 
                esc_attr_e('Delete Profile Photo', 'buddypress');
                ?>
" class="bp-xprofile-avatar-user-admin"><?php 
                esc_html_e('Delete Profile Photo', 'buddypress');
                ?>
</a>

			<?php 
            }
            // Load the Avatar UI templates if user avatar uploads are enabled and current WordPress version is supported.
            if (!bp_core_get_root_option('bp-disable-avatar-uploads') && bp_attachments_is_wp_version_supported()) {
                ?>
				<a href="#TB_inline?width=800px&height=400px&inlineId=bp-xprofile-avatar-editor" title="<?php 
                esc_attr_e('Edit Profile Photo', 'buddypress');
                ?>
" class="thickbox bp-xprofile-avatar-user-edit"><?php 
                esc_html_e('Edit Profile Photo', 'buddypress');
                ?>
</a>
				<div id="bp-xprofile-avatar-editor" style="display:none;">
					<?php 
                bp_attachments_get_template_part('avatars/index');
                ?>
				</div>
			<?php 
            }
            ?>

		</div>
		<?php 
        }
开发者ID:igniterealtime,项目名称:community-plugins,代码行数:65,代码来源:class-bp-xprofile-user-admin.php


示例4: buddydrive_editor

/**
 * An Editor other plugins can use for their need.
 *
 * @since 1.3.0
 *
 * @param string $editor_id the Editor's id to insert the BuddyDrive oembed link into.
 */
function buddydrive_editor($editor_id = '')
{
    $buddydrive = buddydrive();
    $current_user_can = (bool) apply_filters('buddydrive_editor_can', is_user_logged_in());
    // Bail if current user can't use it and if not in front end
    if (!$current_user_can || is_admin()) {
        return;
    }
    // Enqueue Thickbox
    wp_enqueue_style('thickbox');
    wp_enqueue_script('thickbox');
    if (!empty($editor_id)) {
        $buddydrive->editor_id = $editor_id;
    }
    // Temporary filters to add custom strings and settings
    add_filter('bp_attachments_get_plupload_l10n', 'buddydrive_editor_strings', 10, 1);
    add_filter('bp_attachments_get_plupload_default_settings', 'buddydrive_editor_settings', 10, 1);
    // Enqueue BuddyPress attachments scripts
    bp_attachments_enqueue_scripts('BuddyDrive_Attachment');
    // Remove the temporary filters
    remove_filter('bp_attachments_get_plupload_l10n', 'buddydrive_editor_strings', 10, 1);
    remove_filter('bp_attachments_get_plupload_default_settings', 'buddydrive_editor_settings', 10, 1);
    $url = remove_query_arg(array_keys($_REQUEST));
    ?>
	<a href="<?php 
    echo esc_url($url);
    ?>
#TB_inline?inlineId=buddydrive-public-uploader" title="<?php 
    esc_attr_e('Add file', 'buddydrive');
    ?>
" id="buddydrive-btn" class="thickbox button">
		<?php 
    echo esc_html_e('Add File', 'buddydrive');
    ?>
	</a>
	<div id="buddydrive-public-uploader" style="display:none;">
		<?php 
    /* Markup for the uploader */
    ?>
			<div class="buddydrive-uploader"></div>
			<div class="buddydrive-uploader-status"></div>

		<?php 
    bp_attachments_get_template_part('uploader');
    /* Markup for the uploader */
    ?>
	</div>
	<?php 
}
开发者ID:MrVibe,项目名称:buddydrive,代码行数:56,代码来源:buddydrive-item-template.php


示例5: _e

<h2><?php 
_e('Change Cover Image', 'buddypress');
?>
</h2>

<?php 
/**
 * Fires before the display of profile cover image upload content.
 *
 * @since 2.4.0
 */
do_action('bp_before_profile_edit_cover_image');
?>

<p><?php 
_e('Your Cover Image will be used to customize the header of your profile.', 'buddypress');
?>
</p>

<?php 
bp_attachments_get_template_part('cover-images/index');
?>

<?php 
/**
 * Fires after the display of profile cover image upload content.
 *
 * @since 2.4.0
 */
do_action('bp_after_profile_edit_cover_image');
开发者ID:buddypress,项目名称:BuddyPress-build,代码行数:30,代码来源:change-cover-image.php


示例6: bp_attachments_get_template_part

 *
 * It's also used to create the common Backbone views.
 *
 * @since 2.4.0
 *
 * @package BuddyPress
 * @subpackage bp-attachments
 */
?>

<div class="bp-cover-image"></div>
<div class="bp-cover-image-status"></div>
<div class="bp-cover-image-manage"></div>

<?php 
bp_attachments_get_template_part('uploader');
?>

<script id="tmpl-bp-cover-image-delete" type="text/html">
	<# if ( 'user' === data.object ) { #>
		<p><?php 
_e("If you'd like to delete your current cover image but not upload a new one, please use the delete Cover Image button.", 'buddypress');
?>
</p>
		<p><a class="button edit" id="bp-delete-cover-image" href="#"><?php 
esc_html_e('Delete My Cover Image', 'buddypress');
?>
</a></p>
	<# } else if ( 'group' === data.object ) { #>
		<p><?php 
_e("If you'd like to remove the existing group cover image but not upload a new one, please use the delete group cover image button.", 'buddypress');
开发者ID:CompositeUK,项目名称:clone.BuddyPress,代码行数:31,代码来源:index.php


示例7: front_end_attachments_editor

/**
 * BP Attachment Editor
 */
function front_end_attachments_editor()
{
    // Bail if current user can't use it and if not in front end
    if (!current_user_can('upload_files') || !buddypress()->core->front_end_attachments->use_bp_attachment) {
        return;
    }
    // Enqueue Thickbox
    wp_enqueue_style('thickbox');
    wp_enqueue_script('thickbox');
    // Temporary filters to add custom strings and settings
    add_filter('bp_attachments_get_plupload_l10n', 'front_end_attachments_editor_strings', 10, 1);
    add_filter('bp_attachments_get_plupload_default_settings', 'front_end_attachments_editor_settings', 10, 1);
    // Enqueue BuddyPress attachments scripts
    bp_attachments_enqueue_scripts('Front_End_Attachment');
    // Remove the temporary filters
    remove_filter('bp_attachments_get_plupload_l10n', 'front_end_attachments_editor_strings', 10, 1);
    remove_filter('bp_attachments_get_plupload_default_settings', 'front_end_attachments_editor_settings', 10, 1);
    $url = remove_query_arg(array_keys($_REQUEST));
    ?>
	<a href="<?php 
    echo esc_url($url);
    ?>
#TB_inline?inlineId=front-end-attachments-modal" title="<?php 
    esc_attr_e('Add file', 'front-end-attachments');
    ?>
" id="front-end-attachments-btn" class="thickbox button">
		<?php 
    echo esc_html_e('Add File', 'front-end-attachments');
    ?>
	</a>
	<div id="front-end-attachments-modal" style="display:none;">
		<?php 
    /* Markup for the uploader */
    ?>
			<div class="fe-attachments-uploader"></div>
			<div class="fe-attachments-uploader-status"></div>

		<?php 
    bp_attachments_get_template_part('uploader');
    /* Markup for the uploader */
    ?>
	</div>
	<?php 
}
开发者ID:imath,项目名称:front-end-attachments,代码行数:47,代码来源:functions.php



注:本文中的bp_attachments_get_template_part函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP bp_attachments_is_wp_version_supported函数代码示例发布时间:2022-05-24
下一篇:
PHP bp_ajax_querystring函数代码示例发布时间:2022-05-24
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap