本文整理匯總了PHP中gallery::user_can_edit方法的典型用法代碼示例。如果您正苦於以下問題:PHP gallery::user_can_edit方法的具體用法?PHP gallery::user_can_edit怎麽用?PHP gallery::user_can_edit使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類gallery
的用法示例。
在下文中一共展示了gallery::user_can_edit方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: get_my_galleries_by_contextid
public static function get_my_galleries_by_contextid($contextid)
{
global $DB;
$context = \context::instance_by_id($contextid);
if (!($coursecontext = $context->get_course_context(false))) {
return array();
}
$course = $DB->get_record('course', array('id' => $coursecontext->instanceid), '*', MUST_EXIST);
$collections = get_all_instances_in_course('mediagallery', $course);
$collids = array();
$theboxenabled = false;
foreach ($collections as $collection) {
if (!$theboxenabled && $collection->mode == 'thebox') {
continue;
}
$collids[] = $collection->id;
}
if (empty($collids)) {
return array();
}
list($insql, $params) = $DB->get_in_or_equal($collids, SQL_PARAMS_NAMED);
// If theBox is removed, or set to hidden, don't display theBox content.
$select = '';
$repos = \core\plugininfo\repository::get_enabled_plugins();
if (!isset($repos['thebox']) || !$theboxenabled) {
$select .= " AND g.mode != 'thebox'";
}
$sql = "SELECT g.*,\n " . $DB->sql_concat('mg.name', "' > '", 'g.name') . " AS label\n FROM {mediagallery_gallery} g\n JOIN {mediagallery} mg on (mg.id = g.instanceid)\n WHERE instanceid {$insql} {$select}";
$list = array();
foreach ($DB->get_records_sql($sql, $params) as $record) {
$gallery = new gallery($record);
if ($gallery->user_can_edit(null, true)) {
$list[$gallery->id] = $record->label;
}
}
return $list;
}