Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 1.45 KB

toc.md

File metadata and controls

27 lines (20 loc) · 1.45 KB

WHM_Core - Development core

Common difficulties you'll face while doing addon development in XenForo

Developers often face these problems during the development process in XenForo:

  1. It's not possible to extend basic classes in XenForo, especially static helpers.
  2. It's not possible to extend multiple XenForo classes with a single third party class due to limitation of a single class repetitious declaring (Cannot redeclare class error).
  3. Pushing input data from controller to data writer is really hard to do when you're dealing with an extension of common data types (nodes, messages, threads).
  4. Changing or adding any event listener requires configuring through admin control panel.
  5. You can't use VCS (Version control systems) for your addons because all your scripts are located inside XenForo libraries tree.

This core solves the issues stated above.

Contents

Additional