Ejemplo n.º 1
0
 /**
  * Retrieve CGU's for the specified \databox
  *
  * @param  \databox $databox
  *
  * @return array
  */
 private function list_databox_terms(\databox $databox)
 {
     $ret = [];
     foreach ($databox->get_cgus() as $locale => $array_terms) {
         $ret[] = ['locale' => $locale, 'terms' => $array_terms['value']];
     }
     return $ret;
 }