本文整理汇总了PHP中GVCommon::get_users方法的典型用法代码示例。如果您正苦于以下问题:PHP GVCommon::get_users方法的具体用法?PHP GVCommon::get_users怎么用?PHP GVCommon::get_users使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类GVCommon
的用法示例。
在下文中一共展示了GVCommon::get_users方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: get_created_by_choices
/**
* Calculate the search choices for the users
*
* @since 1.8
*
* @return array Array of user choices (value = ID, text = display name)
*/
private static function get_created_by_choices()
{
/**
* filter gravityview/get_users/search_widget
* @see \GVCommon::get_users
*/
$users = GVCommon::get_users('search_widget', array('fields' => array('ID', 'display_name')));
$choices = array();
foreach ($users as $user) {
$choices[] = array('value' => $user->ID, 'text' => $user->display_name);
}
return $choices;
}
示例2: add_select
/**
* Output the select to change the entry creator
* @param int $form_id GF Form ID
* @param array $entry GF entry array
* @return void
*/
function add_select($form_id, $entry)
{
if (rgpost('screen_mode') !== 'edit') {
return;
}
$users = GVCommon::get_users('change_entry_creator');
$output = '<label for="change_created_by">';
$output .= esc_html__('Change Entry Creator:', 'gravityview');
$output .= '</label>
<select name="created_by" id="change_created_by" class="widefat">';
$output .= '<option value=""> — ' . esc_attr_x('No User', 'No user assigned to the entry', 'gravityview') . ' — </option>';
foreach ($users as $user) {
$output .= '<option value="' . $user->ID . '"' . selected($entry['created_by'], $user->ID, false) . '>' . esc_attr($user->display_name . ' (' . $user->user_nicename . ')') . '</option>';
}
$output .= '</select>';
$output .= '<input name="originally_created_by" value="' . esc_attr($entry['created_by']) . '" type="hidden" />';
echo $output;
}