Ejemplo n.º 1
0
 private function _buildThemeData(tubepress_api_theme_ThemeInterface $theme)
 {
     $raw = array('authors' => $theme->getAuthors(), 'description' => $theme->getDescription(), 'license' => $theme->getLicense(), 'screenshots' => $theme->getScreenshots(), 'support' => array('demo' => $theme->getDemoUrl(), 'homepage' => $theme->getHomepageUrl(), 'docs' => $theme->getDocumentationUrl(), 'download' => $theme->getDownloadUrl(), 'bugs' => $theme->getBugTrackerUrl(), 'forum' => $theme->getForumUrl(), 'sourceCode' => $theme->getSourceCodeUrl()), 'version' => $theme->getVersion());
     return $this->_deepToString($raw);
 }