Recent content by TufanM

  1. T

    XF 2.0 How can I get username of logged user on PHP?

    I found that already, it doesn't seem to have all methods.
  2. T

    XF 2.0 How can I get username of logged user on PHP?

    Is there an api documentation for these methods? I couldn't find anything on google.
  3. T

    XF 2.0 How can I get username of logged user on PHP?

    I am using the code below, it works. Is this the right implementation? Can someone fake their user ids by editing cookies etc.? require('src/XF.php'); \XF::start('/hc'); $app = \XF::setupApp('XF\Pub\App'); $s = $app->session(); $uid = $s->get('userId'); if ($uid){ $finder =...
  4. T

    XF 2.0 How can I get username of logged user on PHP?

    I'm trying to build an external shop for my website, i need to get logged user's username on my PHP application but i have no idea how. How can i access to user data from PHP?
Back
Top Bottom