There currently is no point and click method for marking data as preliminary in LRSi; it must be done in code.
- Open the LRSi (public) configuration file at /var/www/html/public/data/config.php
- On line 27, edit the “array()” value by specifying the preliminary year as both a key and value.
- array() becomes array( 2017 => 2017)
In the above example, all 2017 data will be marked as preliminary in LRSi.
To remove the preliminary marking, simply reverse the process and make the “array()” value empty.
There currently is no point and click method for marking data as preliminary in LRSi; it must be done in code.
- Open the LRSi (public) configuration file at /var/www/html/public/data/config.php
- On line 27, edit the “array()” value by removing the key/value for the preliminary year.
- array( 2017 => 2017) becomes array()