Commit graph

12 commits

Author SHA1 Message Date
Mark Nelson bd160b420a Fixed copyright year 2017-12-03 14:48:30 +08:00
Mark Nelson 459244b417 #134 Renamed duplicate() function and modified behaviour 2017-12-03 14:45:51 +08:00
Mark Nelson 9507a87d46 #134 Add ability to duplicate templates 2017-12-03 14:45:45 +08:00
Mark Nelson 430ae35d71 Created factory class 2017-12-03 14:43:35 +08:00
Mark Nelson 6eb8e5b27c #48 Added task and settings responsible for emailing certificates 2017-04-26 21:44:04 +08:00
Mark Nelson 7a2e080ab8 #88 Make plugins DB codechecker happy 2017-02-25 13:00:55 +08:00
Mark Nelson 4af6f68e48 Removed unused global 2016-08-24 12:36:26 +08:00
Mark Nelson f365ff3ada Fixed issue with reordering retrieving more than one record 2016-08-24 12:26:21 +08:00
Mark Nelson ff049e2c1b #6 Added ability to view other users' certificates 2016-08-23 16:28:08 +08:00
Mark Nelson 05e83ee638 Fixed moving item issue
If an item to swap was not found (so was equal
to false) the function was still handling this
as true as it was using 'isset', rather than
'!empty'.
2016-02-20 18:39:14 +08:00
Mark Nelson 6889b04df0 Created one function to handle move_* actions
This changes the name of a column in a DB table.
No upgrade script has been written as this activity
has not been officially released.
2016-02-20 18:09:46 +08:00
Mark Nelson 43d20c0d1b Huge refactor
1) Every certificate is a template. Before a user would create a certificate then had
the option to save it as a template. This could potentially be chaotic with numerous
users creating templates, making the template system a mess. Now, rather than creating
a certificate first, then saving it as a template, you are always creating a template.
Each template is associated with a context, so depending on where you are creating it
the context is different. This means users in the CONTEXT_MODULE context are creating
a template specific to that module, where as a user creating a template in the
CONTEXT_SYSTEM context would be creating a general template that can be used by others.
This meant we can remove the 'customcert_template_*' db tables. Yay - no duplicated
tables.
2) Created new helper classes and moved functionality there.
3) Moved files to classes/ for autoloading.
4) General tidy up.
2016-02-20 16:35:19 +08:00