Skip to content
Snippets Groups Projects
  1. Mar 18, 2016
    • Jared Hancock's avatar
      orm: Migrate create functionality to the constructor · 1ba40e35
      Jared Hancock authored
      Previously, the create method was used to create a new instance of an orm
      model (which would later result in an INSERT when persisted); however, some
      classes require or utilize varying parameters to their create() method,
      which PHP7 considers an error. Methods in subclasses must be defined with a
      calling signature compatible with the parent class.
      
      This patch shifts the concept of model creation to the constructor. Now, the
      constructor of ORM models is required to be compatible with that of
      ModelBase class. Now that most models do not define a constructor, this is
      much easier to control, and much more logical.
      
      Also, remove an issue where assignments on a relationship field to an
      instance of a super class of the foreign model would raise an error. This
      was previously addressed by re-classing the instance in the
      ModelInstanceManager::getOrBuild(); however that design would create
      multiple instances of the same object in memory, which defeats one of the
      primary design concepts of the ORM. This patch addresses the issue by
      allowing super-classes of the declared foreign model in relationship
      assignments.
      1ba40e35
    • Jared Hancock's avatar
      php: Support PHP 7, require at least 5.4 · 9616a61d
      Jared Hancock authored
      This commit attempts to remove all coding standard warnings emitted by PHP
      7.0.
      9616a61d
  2. Nov 06, 2015
  3. Sep 29, 2015
  4. Aug 18, 2015
  5. Aug 17, 2015
    • Peter Rotich's avatar
      bug: __create · aa036256
      Peter Rotich authored
      Department/Topic create now considers the possibility of preset id (primary key)
      Default help topic routing to floating system's default department
      aa036256
  6. Aug 10, 2015
  7. Aug 07, 2015
  8. Aug 04, 2015
  9. Jul 21, 2015
  10. Jul 08, 2015
  11. Jun 08, 2015
  12. Jun 07, 2015
  13. May 27, 2015
  14. May 13, 2015
    • Jared Hancock's avatar
      orm: Fix incorrect queries in InstrumentedLists · c9e6ba18
      Jared Hancock authored
      If a relationship has more than one field in the constraint, then the
      InstrumentedList query generated would not be correct. This happens often
      in osTicket for the join foreign key fields `object_type` and `object_id`.
      
      This patch addresses the issue by sending all the fields in the foreign key
      to the InstrumentedList constructor.
      c9e6ba18
  15. May 05, 2015
    • Peter Rotich's avatar
      Assignment Field · 73348c18
      Peter Rotich authored
      Add support for passing a criteria to AssignmentField to limit  the choices
      Limit assignees based on department settings
      Cache choices
      73348c18
  16. Apr 30, 2015
  17. Apr 16, 2015
  18. Apr 01, 2015
    • Peter Rotich's avatar
      Unassign on transfer · 2fcc24a5
      Peter Rotich authored
      Unassign tickets on transfer when the target department has assignment
      restriction and the assigned staff is not a member.
      
      Disable claim (quick self-assignment) when above restriction is in effect.
      2fcc24a5
  19. Jan 05, 2015
    • Jared Hancock's avatar
      oops: Fix several small, general issues · 1922920a
      Jared Hancock authored
        * Fix fatal errors adding a new FAQ (fixes #1648)
        * Fix removal of attachments when deleting a thread (fixes #1650)
        * Fix crash discovering department members for alerts (fixes #1652)
      1922920a
  20. Dec 26, 2014
    • Jared Hancock's avatar
      dept: Add function to retrieve alert email mailbox · 0b91a9ca
      Jared Hancock authored
      This patch adds a ::getAlertEmail() method to the Department class, which
      allows administrators to use the department email address (normally for
      replies) as the alert email address. If not specified, the system alert
      email address is retrieved instead, automatically.
      0b91a9ca
  21. Dec 11, 2014
  22. Dec 10, 2014
  23. Dec 09, 2014
  24. Dec 08, 2014
Loading