- Posts: 27
- Thank you received: 0
Ask the community, share ideas, and connect with other LimeSurvey users!
What do you mean by sponsoring?holch wrote: How about sponsoring the feature? As I said, I don't see that anyone will take this over any time soon.
holch wrote: Well, I don't know what the premium package includes (this is from the Limesurvey GmbH), but from what I know it is the comfort update at the moment, which is well worth its money.
The rest is based on Limesurey's current features. If you require different features there are a few options:
- - Make a feature request (which I think you already did) and wait for its implementation. However, just like with other software this might happen, or not. Even if you spend thousands of dollars/euros on commercial survey packages this is not guaranteed. Back in the day when we used a very expensive survey tool we had tons of feature requests, some made it in the package, others didn't.
- Sponsoring: Find a developer that will implement this into Limesurvey, if possible. Of course they probably won't do this for free.
- Implement it as a plugin (if possible).
{ $fieldno = strtoupper($field['sql_name']); if($field['SPSStype']=='DATETIME23.2') { // convert mysql datestamp (yyyy-mm-dd hh:mm:ss) to SPSS datetime (dd-mmm-yyyy hh:mm:ss) format if (isset($row[$fieldno])) { list( $year, $month, $day, $hour, $minute, $second ) = preg_split( '([^0-9])', $row[$fieldno] ); if ($year != '' && (int)$year >= 1900) { echo $q.date('d-m-Y H:i:s', mktime( $hour, $minute, $second, $month, $day, $year ) ).$q; } else { echo ($na); } } else { echo ($na); } }