signalpoint / DrupalGap

An application development kit for Drupal websites.
https://www.drupalgap.org
GNU General Public License v2.0
232 stars 185 forks source link

How to get user id #990

Closed sangasgar closed 6 years ago

sangasgar commented 6 years ago

How to get user id or node id in module page?

signalpoint commented 6 years ago
var uid = Drupal.user.uid;

If you're on the node page:

var nid = arg(1);
sangasgar commented 6 years ago

Thanks

signalpoint commented 6 years ago

You're welcome.