updated method names for getScope
git-svn-id: http://svn.research-infrastructures.eu/public/d4science/gcube/trunk/portal/client-context-library@133890 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
9c8f30bc83
commit
3502a20fe8
10
.project
10
.project
|
@ -20,11 +20,6 @@
|
||||||
<arguments>
|
<arguments>
|
||||||
</arguments>
|
</arguments>
|
||||||
</buildCommand>
|
</buildCommand>
|
||||||
<buildCommand>
|
|
||||||
<name>org.eclipse.m2e.core.maven2Builder</name>
|
|
||||||
<arguments>
|
|
||||||
</arguments>
|
|
||||||
</buildCommand>
|
|
||||||
<buildCommand>
|
<buildCommand>
|
||||||
<name>com.google.gdt.eclipse.core.webAppProjectValidator</name>
|
<name>com.google.gdt.eclipse.core.webAppProjectValidator</name>
|
||||||
<arguments>
|
<arguments>
|
||||||
|
@ -35,6 +30,11 @@
|
||||||
<arguments>
|
<arguments>
|
||||||
</arguments>
|
</arguments>
|
||||||
</buildCommand>
|
</buildCommand>
|
||||||
|
<buildCommand>
|
||||||
|
<name>org.eclipse.m2e.core.maven2Builder</name>
|
||||||
|
<arguments>
|
||||||
|
</arguments>
|
||||||
|
</buildCommand>
|
||||||
</buildSpec>
|
</buildSpec>
|
||||||
<natures>
|
<natures>
|
||||||
<nature>org.eclipse.jem.workbench.JavaEMFNature</nature>
|
<nature>org.eclipse.jem.workbench.JavaEMFNature</nature>
|
||||||
|
|
|
@ -13,6 +13,24 @@ public class GCubeClientContext implements EntryPoint {
|
||||||
|
|
||||||
public void onModuleLoad() {}
|
public void onModuleLoad() {}
|
||||||
|
|
||||||
|
public static native String getCurrentContextId() /*-{
|
||||||
|
var groupId;
|
||||||
|
if ($wnd.Liferay != null) {
|
||||||
|
groupId = $wnd.Liferay.ThemeDisplay.getScopeGroupId();
|
||||||
|
console.log("context id is = " + groupId);
|
||||||
|
}
|
||||||
|
return groupId;
|
||||||
|
}-*/;
|
||||||
|
|
||||||
|
public static native String getCurrentUserId() /*-{
|
||||||
|
var userId;
|
||||||
|
if ($wnd.Liferay != null) {
|
||||||
|
userId = $wnd.Liferay.ThemeDisplay.getScopeGroupId();
|
||||||
|
console.log("current userid is = " + userId);
|
||||||
|
}
|
||||||
|
return userId;
|
||||||
|
}-*/;
|
||||||
|
|
||||||
public static native void injectContext() /*-{
|
public static native void injectContext() /*-{
|
||||||
if ($wnd.Liferay != null) {
|
if ($wnd.Liferay != null) {
|
||||||
var userId;
|
var userId;
|
||||||
|
|
Loading…
Reference in New Issue