#!/usr/bin/env php getCachePage(); $textRepo = new TextZoteroRepository($cachePage, $config); $feedReader = new ImportZoteroFeedReader($config); $webRepo = new FeedZoteroRepository($feedReader, $config); $entries = $webRepo->getAllEntries(); $textRepo->saveEntries($entries); echo count($textRepo->getAllEntries()) . " entries imported into file " . $cachePage . ".\n"; ?>