Example #1
0
 /**
  * Update authentication data (needs Tinebase tables to store the data)
  * 
  * Installs Tinebase if not already installed
  * 
  * @todo validate $data
  * 
  * @param  array $data
  * @return array [success status]
  */
 public function saveAuthentication($data)
 {
     $this->_controller->saveAuthentication($data);
     return array('success' => true, 'setupRequired' => $this->_controller->setupRequired());
 }