- May 13, 2018
-
-
Marco Borla authored
Some fix for PHP 7,2 https://github.com/osTicket/osTicket/issues/4237
-
- Jun 06, 2016
-
-
Peter Rotich authored
This is important to show custom statuses with properties.
-
- May 27, 2016
-
-
Peter Rotich authored
Add a preview tool tip to show list item properties on mouse-over.
-
- Mar 18, 2016
-
-
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.
-
- Dec 31, 2015
-
-
Peter Rotich authored
Use CsvImporter util to importing items Fix items search
-
- Dec 02, 2015
-
-
Peter Rotich authored
Allow fields to internally define the render mode. This allows for fields to to self render in a view mode when it's not editable.
-
Peter Rotich authored
Allow changing/saving setting/properties on internal ticket statuses. With the exception of the state.
-
- Aug 18, 2015
-
-
Jared Hancock authored
-
- Aug 04, 2015
-
-
Jared Hancock authored
-
- Jul 30, 2015
-
-
Jared Hancock authored
Fixes #2328
-
- Jul 29, 2015
-
-
Jared Hancock authored
This patch shores up the new list management feature with the custom list handler feature written to support lists being saved in a table other than %list_item, namely the built-in ticket status list. Also squelch the 'You sure?' popup appearing multiple times.
-
- Jul 21, 2015
-
-
Jared Hancock authored
-
- May 27, 2015
-
-
Peter Rotich authored
This adds ability to delete properties on list deletion
-
Jared Hancock authored
-
- Apr 30, 2015
-
-
Peter Rotich authored
This is a temporary patch for v1.9.7 -- develop-next already has a better implementation.
-
Peter Rotich authored
Add ability to import and export list items
-
Jared Hancock authored
-
Jared Hancock authored
-
- Apr 15, 2015
-
-
Jared Hancock authored
-
- Mar 30, 2015
-
-
Peter Rotich authored
Support using value or abbrv. for choice/selection input fields.
-
- Feb 27, 2015
-
-
Jared Hancock authored
-
- Feb 17, 2015
-
-
Jared Hancock authored
-
Jared Hancock authored
-
- Jan 23, 2015
-
-
Jared Hancock authored
-
- Dec 11, 2014
-
-
Peter Rotich authored
-
Jared Hancock authored
-
Jared Hancock authored
-
- Dec 08, 2014
-
-
Jared Hancock authored
-
Jared Hancock authored
-
- Oct 14, 2014
-
-
Peter Rotich authored
Add order by method to ticket status list to return appropriate sort columns Delegate __get method in CustomListHandler to the parent list
-
- Sep 24, 2014
-
-
Peter Rotich authored
This will allow administrator to indicate if end users are allowed to reopen tickets in a particular closed status.
-
- Sep 19, 2014
-
-
Peter Rotich authored
-
- Sep 17, 2014
-
-
Peter Rotich authored
-
- Sep 12, 2014
-
-
Peter Rotich authored
-
- Sep 02, 2014
-
-
Jared Hancock authored
-
- Sep 01, 2014
-
-
Peter Rotich authored
-
- Aug 29, 2014
-
-
Jared Hancock authored
And allow for @context to add context to the bare string literal. For instance, /* @trans, @context "noun" */ 'Open' Would mark the string 'Open' translatable with context "noun".
-
- Aug 27, 2014
-
-
Jared Hancock authored
Always save a key/value hash of the selected value(s). However, if the field does not have the multivalue configuration setting, then retrieve just the key with the to_php() function. to_database(), however, will always return a JSON string with the value(s) formatted as a hash array.
-
- Aug 22, 2014
-
-
Peter Rotich authored
-
Peter Rotich authored
Statuses with tickets cannot be deleted Fix orm to class gracefully when joins are not inspected Add create date to new statuses
-