* folder type as values.
*/
public function listFolderTypes();
+
+ /**
+ * Synchronize the list information with the information from the backend.
+ *
+ * @return NULL
+ */
+ public function synchronize();
}
'/shared/vendor/kolab/folder-type'
);
}
+
+ /**
+ * Synchronize the list information with the information from the backend.
+ *
+ * @return NULL
+ */
+ public function synchronize()
+ {
+ }
}
\ No newline at end of file
*/
public function synchronize()
{
+ $this->_list->synchronize();
+
$this->_cache->storeListData(
$this->_list->getConnectionId(),
self::QUERIES,
);
return $result;
}
+
+ /**
+ * Synchronize the list information with the information from the backend.
+ *
+ * @return NULL
+ */
+ public function synchronize()
+ {
+ $this->_list->synchronize();
+ $this->_logger->info(
+ sprintf(
+ 'Synchronized folder list for %s.',
+ $this->getConnectionId()
+ )
+ );
+ }
}
\ No newline at end of file