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

PHP bp_get_group_has_avatar函数代码示例

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

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



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

示例1: test_bp_get_group_has_avatar_has_avatar_uploaded

 /**
  * @group bp_get_group_has_avatar
  */
 public function test_bp_get_group_has_avatar_has_avatar_uploaded()
 {
     $g = $this->factory->group->create();
     // Fake it
     add_filter('bp_core_fetch_avatar_url', array($this, 'avatar_cb'));
     $this->assertTrue(bp_get_group_has_avatar($g));
     remove_filter('bp_core_fetch_avatar_url', array($this, 'avatar_cb'));
 }
开发者ID:swissspidy,项目名称:BuddyPress,代码行数:11,代码来源:avatars.php


示例2: script_data

 /**
  * Build script datas for the Uploader UI.
  *
  * @since 2.3.0
  *
  * @return array The javascript localization data.
  */
 public function script_data()
 {
     // Get default script data.
     $script_data = parent::script_data();
     // Defaults to Avatar Backbone script.
     $js_scripts = array('bp-avatar');
     // Default object.
     $object = '';
     // Get the possible item ids.
     $user_id = $this->get_user_id();
     $group_id = $this->get_group_id();
     if (!empty($user_id)) {
         // Should we load the the Webcam Avatar javascript file.
         if (bp_avatar_use_webcam()) {
             $js_scripts = array('bp-webcam');
         }
         $script_data['bp_params'] = array('object' => 'user', 'item_id' => $user_id, 'has_avatar' => bp_get_user_has_avatar($user_id), 'nonces' => array('set' => wp_create_nonce('bp_avatar_cropstore'), 'remove' => wp_create_nonce('bp_delete_avatar_link')));
         // Set feedback messages.
         $script_data['feedback_messages'] = array(1 => __('There was a problem cropping your profile photo.', 'buddypress'), 2 => __('Your new profile photo was uploaded successfully.', 'buddypress'), 3 => __('There was a problem deleting your profile photo. Please try again.', 'buddypress'), 4 => __('Your profile photo was deleted successfully!', 'buddypress'));
     } elseif (!empty($group_id)) {
         $script_data['bp_params'] = array('object' => 'group', 'item_id' => $group_id, 'has_avatar' => bp_get_group_has_avatar($group_id), 'nonces' => array('set' => wp_create_nonce('bp_avatar_cropstore'), 'remove' => wp_create_nonce('bp_group_avatar_delete')));
         // Set feedback messages.
         $script_data['feedback_messages'] = array(1 => __('There was a problem cropping the group profile photo.', 'buddypress'), 2 => __('The group profile photo was uploaded successfully.', 'buddypress'), 3 => __('There was a problem deleting the group profile photo. Please try again.', 'buddypress'), 4 => __('The group profile photo was deleted successfully!', 'buddypress'));
     } else {
         /**
          * Use this filter to include specific BuddyPress params for your object.
          * e.g. Blavatar.
          *
          * @since 2.3.0
          *
          * @param array $value The avatar specific BuddyPress parameters.
          */
         $script_data['bp_params'] = apply_filters('bp_attachment_avatar_params', array());
     }
     // Include the specific css.
     $script_data['extra_css'] = array('bp-avatar');
     // Include the specific css.
     $script_data['extra_js'] = $js_scripts;
     // Set the object to contextualize the filter.
     if (isset($script_data['bp_params']['object'])) {
         $object = $script_data['bp_params']['object'];
     }
     /**
      * Use this filter to override/extend the avatar script data.
      *
      * @since 2.3.0
      *
      * @param array  $script_data The avatar script data.
      * @param string $object      The object the avatar belongs to (eg: user or group).
      */
     return apply_filters('bp_attachment_avatar_script_data', $script_data, $object);
 }
开发者ID:JeroenNouws,项目名称:BuddyPress,代码行数:59,代码来源:class-bp-attachment-avatar.php


示例3: _e

			<p><?php 
        _e("Upload an image to use as an avatar for this group. The image will be shown on the main group page, and in search results.", 'buddypress');
        ?>
</p>

			<p>
				<input type="file" name="file" id="file" />
				<input type="submit" name="upload" id="upload" value="<?php 
        _e('Upload Image', 'buddypress');
        ?>
" />
				<input type="hidden" name="action" id="action" value="bp_avatar_upload" />
			</p>

			<?php 
        if (bp_get_group_has_avatar()) {
            ?>

				<p><?php 
            _e("If you'd like to remove the existing avatar but not upload a new one, please use the delete avatar button.", 'buddypress');
            ?>
</p>

				<?php 
            bp_button(array('id' => 'delete_group_avatar', 'component' => 'groups', 'wrapper_id' => 'delete-group-avatar-button', 'link_class' => 'edit', 'link_href' => bp_get_group_avatar_delete_link(), 'link_title' => __('Delete Avatar', 'buddypress'), 'link_text' => __('Delete Avatar', 'buddypress')));
            ?>

			<?php 
        }
        ?>
开发者ID:nxtclass,项目名称:NXTClass-themes,代码行数:30,代码来源:admin.php



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


鲜花

握手

雷人

路过

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

请发表评论

全部评论

专题导读
上一篇:
PHP bp_get_group_id函数代码示例发布时间:2022-05-24
下一篇:
PHP bp_get_group_date_created函数代码示例发布时间: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