Coding standards
Security in ResourceSpace
Developer reference
- Project structure
- Database schema
- Fixed list fields
- Debugging ResourceSpace
- Writing your own plugins
- Context help links
- Custom fields ("user" defined)
- Query caching
- All user permissions
- Client side API calls
- Modals
- Sending user notifications
- Progressive Web App
- Managing (PHP) code dependencies
- Managing (JS) code dependencies
- OpenAPI documentation
- Automated Testing
Database
- Table: activity_log
- Table: annotation
- Table: annotation_node
- Table: collection
- Table: collection_keyword
- Table: collection_log
- Table: collection_resource
- Table: collection_savedsearch
- Table: comment
- Table: daily_stat
- Table: dash_tile
- Table: dynamic_tree_node
- Table: external_access_keys
- Table: filter
- Table: filter_rule
- Table: filter_rule_node
- Table: ip_lockout
- Table: job_queue
- Table: keyword
- Table: keyword_related
- Table: mail_log
- Table: message
- Table: node
- Table: node_keyword
- Table: plugins
- Table: preview_size
- Table: report
- Table: report_periodic_emails
- Table: report_periodic_emails_unsubscribe
- Table: request
- Table: research_request
- Table: resource
- Table: resource_alt_files
- Table: resource_custom_access
- Table: resource_dimensions
- Table: resource_keyword
- Table: resource_log
- Table: resource_node
- Table: resource_related
- Table: resource_type
- Table: resource_type_field
- Table: resource_type_field_resource_type
- Table: search_log
- Table: site_text
- Table: slideshow
- Table: sysvars
- Table: tab
- Table: user
- Table: user_collection
- Table: user_dash_tile
- Table: user_message
- Table: user_preferences
- Table: user_rating
- Table: user_report
- Table: user_userlist
- Table: usergroup
- Table: usergroup_collection
- Table: usergroup_dash_tile
Table: job_queue
The job queue - a list of active offline jobs such as preview processing.
| Column | Type | Note |
|---|---|---|
| ref | int(11) | Auto incrementing index |
| type | varchar(100) | Job type e.g. collection_download that matches the name of handler files in include/job_handlers. Custom types can be created by plugins if they also include a handler |
| job_data | mediumtext | JSON encoded job data |
| start_date | datetime | Earliest time to start the job |
| user | int(11) | See table user |
| status | int(11) | Job status code e.g. STATUS_COMPLETE. See definitions.php |
| success_text | varchar(250) | Text to include in message if job completes successfully |
| failure_text | varchar(250) | Text to include in message if job fails |
| job_code | varchar(100) | Unique hash. Used to prevent duplicate jobs |
| priority | tinyint(1) | Job priority. Lower numbers are higher priority. Refer to definitions.php and Knowledge Base for more information |
This table is empty by default.
Please see the schema overview for context. This document was last updated on the 30th of August 2026 at 21:35 (Europe/London time).