Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Gliffy Diagram
sizeL
nameCORE_Feedback
alignleft
version2

Intro

CORE allows you to ask for feedback from conference participants. You can ask participants general information about the conference as well have them rate the different presentations.

...

Every user who received a feedback request, gets an email with a unique link. This link contains a UUID and which initializes their feedback session. CORE is not able to link a UUID back to a user and hence the privacy of the participant can be guaranteed. Only users with a valid UUID code can provide feedback. This check is done during initialization of the Feedback model. The UUID links to a feedback_id as illustrated below.

Gliffy Diagram
sizeL
nameCORE_Feedback
alignleft
version2
Code Block
$config = new Zend_Config_Ini(
    APPLICATION_PATH.'/configs/web.ini',
    'development'
);
$db = Zend_Db::factory($config->resources->multidb->webshop);

$query = "select fname, lname, email from vw_prodpart
where product_id IN (57,58,59) and order_status NOT IN ('canceled', 'unpaid', 'pending', 'refund')";

$participants = $db->query($query)->fetchAll();

...