All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.liferay.portal.plugin.PluginUtil Maven / Gradle / Ivy

/**
 * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
 *
 * This library is free software; you can redistribute it and/or modify it under
 * the terms of the GNU Lesser General Public License as published by the Free
 * Software Foundation; either version 2.1 of the License, or (at your option)
 * any later version.
 *
 * This library is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
 * details.
 */

package com.liferay.portal.plugin;

import com.liferay.portal.kernel.model.Plugin;
import com.liferay.portal.kernel.model.PluginSetting;
import com.liferay.portal.kernel.model.User;
import com.liferay.portal.kernel.service.PluginSettingLocalServiceUtil;

import java.util.ArrayList;
import java.util.List;

/**
 * @author Brian Wing Shun Chan
 */
public class PluginUtil {

	public static 

List

restrictPlugins( List

plugins, long companyId, long userId) { return restrictPlugins(plugins, companyId, 0, userId); } public static

List

restrictPlugins( List

plugins, long companyId, long groupId, long userId) { List

visiblePlugins = new ArrayList<>(plugins.size()); for (P plugin : plugins) { PluginSetting pluginSetting = PluginSettingLocalServiceUtil.getPluginSetting( companyId, plugin.getPluginId(), plugin.getPluginType()); if (pluginSetting.isActive() && pluginSetting.hasPermission(userId, groupId)) { visiblePlugins.add(plugin); } } return visiblePlugins; } public static

List

restrictPlugins( List

plugins, User user) { return restrictPlugins(plugins, user.getCompanyId(), user.getUserId()); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy