Recent content by infis

  1. I

    [InfisJSC] Topic (thread) starter's permissions

    I'm very busy so far. When there is an opportunity, I'll get the version for XF2.
  2. I

    XF 1.5 Dump all template variables to javascript console

    For 2.0 example https://xenforo.com/community/threads/dump-all-template-variables-to-javascript-console.145543/
  3. I

    XF 2.0 Dump all template variables to javascript console

    In 2.0 we do not have the variable $__params. Therefore, in order to dump all variables, you need to add a class extension XF\Template\Templater. Create our class. For example src/addons/InfisJSC/XF/Template/Templater.php: <?php namespace InfisJSC\XF\Template; class Templater extends...
  4. I

    XF 1.5 Dump all template variables to javascript console

    Create class for callback. For example library/InfisJSC/Helper.php: <?php class InfisJSC_Helper { static function convertUTF8 (&$item, $key) { if (gettype($item) == 'string') { $item = iconv('UTF-8', 'UTF-8//IGNORE', $item); } } /** *...
  5. I

    [InfisJSC] Topic (thread) starter's permissions

    Yes. But I don't have free time for that now.
  6. I

    [InfisJSC] Topic (thread) starter's permissions

    My addon is not use custom tables.
  7. I

    [InfisJSC] Topic (thread) starter's permissions

    I will not add new permissions for the 1.x. For 2.x - maybe.
  8. I

    [InfisJSC] Topic (thread) starter's permissions

    See previous message - user_id is not must changed or cleared in other plugins. You can change the priority of the run of the handler so that my add-on works before other add-ons.
  9. I

    [InfisJSC] Topic (thread) starter's permissions

    This error is not my addon's error. Other addon cleares, changes or provides incorrect data. Value user_id is must be always present.
  10. I

    [InfisJSC] Topic (thread) starter's permissions

    Thanks! I will test and answer in this thread.
  11. I

    [InfisJSC] Topic (thread) starter's permissions

    On XenForo 2.0 I rename this addon :)
  12. I

    [InfisJSC] Topic (thread) starter's permissions

    Work on 1.5.9.
  13. I

    [InfisJSC] Topic (thread) starter's permissions

    I don't know. XenForo's bug only in the fact that it shows them, although I must hide them. But this is only my opinion. If you uninstall the add-on, the permissions of this add-on will be cleared. Therefore, when you reinstall them will need to be set again. When you disable add-on -...
  14. I

    [InfisJSC] Topic (thread) starter's permissions

    It's bug of XenForo. Permissions are showing, but add-on is not working, if disabled.
Top Bottom