Skip to content

Instantly share code, notes, and snippets.

@rudyrigot
Created March 13, 2014 02:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rudyrigot/9520987 to your computer and use it in GitHub Desktop.
Save rudyrigot/9520987 to your computer and use it in GitHub Desktop.
The controller of the page in prismic.io's Bootstrap example
<?php
/* Initializations */
require_once '../resources/config.php'; // this loads our specific configuration
require_once(LIBRARIES_PATH . "/Prismic.php"); // this loads our Prismic helpers, which include the prismic.io PHP kit
$ctx = Prismic::context(); // getting the context built from our configuration (like the Api object it initializes)
global $linkResolver; // getting the linkResolver object (more on this later)
/* Controller */
try {
// API calls
$homepage = Prismic::getDocument($ctx->getApi()->bookmark('homepage'));
$skills = $ctx->getApi()->forms()->skills->ref($ctx->getRef())->submit();
$works = $ctx->getApi()->forms()->works->ref($ctx->getRef())->submit();
$stuffido = $ctx->getApi()->forms()->{"stuff-i-do"}->ref($ctx->getRef())->submit();
$kindsofwork = $ctx->getApi()->forms()->everything->query('[[:d = at(document.type, "kind-of-work")]]')->ref($ctx->getRef())->submit();
} catch (Guzzle\Http\Exception\BadResponseException $e) {
Prismic::handlePrismicException($e); // We need to catch any network issue, and render it properly
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment