PluginProbe
Github Embed / 1.7
Github Embed v1.7
trunk 1.0 1.1 1.2 1.3 1.4 1.5 1.6 1.7 1.8 1.9 2.0 2.0.1 2.0.2 2.1.0 2.2.0 2.2.1
← All changes | github-api.php +4 -0 1.81.7 View file →
@@ -1,6 +1,8 @@
1 1 <?php
2 2
3 +
4 +
3 5 // 0 - none.
4 6 define( 'GEDEBUG_NONE', 0 );
5 7
6 8 // 1 - call logging only.
@@ -54,10 +56,12 @@
54 56 * with GitHub(http://developer.github.com/v3/oauth/) use the filters here to
55 57 * provide the credentials.
56 58 */
57 59 public function set_credentials() {
60 +
58 61 $this->client_id = apply_filters( 'github-embed-client-id', $this->client_id );
59 62 $this->client_secret = apply_filters( 'github-embed-client-secret', $this->client_secret );
63 +
60 64 }
61 65
62 66
63 67