Skip to content

Instantly share code, notes, and snippets.

@bmarshall511
Created August 20, 2014 02:13
Show Gist options
  • Save bmarshall511/380279391500b0a9c155 to your computer and use it in GitHub Desktop.
Save bmarshall511/380279391500b0a9c155 to your computer and use it in GitHub Desktop.
<?php
$api = new Mozscape_API_Class( 'accessId', 'secretKey' );
// Outputs the Mozscape logo
echo $api->attributionLink( 'logo', 'lg' );
echo $api->attributionLink( 'logo', 'med' );
echo $api->attributionLink( 'logo', 'sm' );
echo $api->attributionLink( 'logo', 'xlg' );
// Outputs the Mozscape icon
echo $api->attributionLink( 'icn', 'lg' );
echo $api->attributionLink( 'icn', 'med' );
echo $api->attributionLink( 'icn', 'sm' );
echo $api->attributionLink( 'icn', 'xlg' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment