PluginProbe
Github Embed / 1.5
Github Embed v1.5
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 +9 -7 1.81.5 View file →
@@ -1,19 +1,19 @@
1 1 <?php
2 2
3 -// 0 - none.
3 +
4 +
5 +// 0 - none
4 6 define( 'GEDEBUG_NONE', 0 );
5 7
6 -// 1 - call logging only.
8 +// 1 - call logging only
7 9 define( 'GEDEBUG_CALL', 1 );
8 10
9 -// 2 - calls, and responses.
11 +// 2 - calls, and responses
10 12 define( 'GEDEBUG_RESP', 2 );
11 13
12 -// Selected debug level.
13 -if ( ! defined( 'GITHUB_API_LEVEL' ) ) {
14 - define( 'GITHUB_API_LEVEL', GEDEBUG_NONE );
15 -}
14 +// Selected debug level
15 +define( 'GITHUB_API_LEVEL', GEDEBUG_NONE );
16 16
17 17
18 18 /**
19 19 * This class contains all the functions that actually retrieve information from the GitHub API
@@ -54,10 +54,12 @@
54 54 * with GitHub(http://developer.github.com/v3/oauth/) use the filters here to
55 55 * provide the credentials.
56 56 */
57 57 public function set_credentials() {
58 +
58 59 $this->client_id = apply_filters( 'github-embed-client-id', $this->client_id );
59 60 $this->client_secret = apply_filters( 'github-embed-client-secret', $this->client_secret );
61 +
60 62 }
61 63
62 64
63 65