Beispiel #1
0
 /**
  * Get stored remote connections
  *
  * @param   bool   $remoteEdit
  * @return  array
  */
 protected function _getRemoteConnections($remoteEdit = true)
 {
     $remotes = array();
     if (!empty($this->_remoteService)) {
         $objRFile = new \Components\Projects\Tables\RemoteFile($this->_database);
         $remotes = $objRFile->getRemoteFiles($this->model->get('id'), $this->_remoteService, $this->subdir, $remoteEdit);
     }
     return $remotes;
 }