You are here

function _get_logging_responsability_description in General Data Protection Regulation 7

Returns a HTML makrup for logging_responsability checkpoint description.

Return value

string HTML markup string

1 call to _get_logging_responsability_description()
gdpr_checklistapi_checklist_info in ./gdpr.module
Implements hook_checklistapi_checklist_info().

File

./gdpr.module, line 354
Contains hook implementations and shared functions.

Code

function _get_logging_responsability_description() {
  $logging_items = [
    '#theme' => 'item_list',
    '#items' => [
      t('Has fewer than 250 employees the processing it carries out is likely no result in a risk to the rights and freedoms of data subjects, the processing is only occasional and the processing does not includes special categories of data (Article 30/5) and as such my organisation is not required to create records of processing acitivities'),
      t('My organisation has 250 or more employees and records of processing activities have been prepared according to Article 30 of the regulation'),
    ],
  ];
  return drupal_render($logging_items);
}