> 30f7226d9a first commit 2 年之前 tailwind-color-palette 30f7226d9a first commit 2 年之前 tailwindcss 30f7226d9a first commit 2 年之前 thenify 30f7226d9a first commit 2 年之前 thenify-all 30f7226d9a first commit 2 年之前 to-regex-range 30f7226d9a first commit 2 年之前 tr46 30f7226d9a first commit 2 年之前 ts-interface-checker 30f7226d9a first commit 2 年之前 uglify-js 30f7226d9a first commit 2 年之前 underscore 30f7226d9a first commit 2 年之前 upper-case 30f7226d9a first commit 2 年之前 util-deprecate 30f7226d9a first commit 2 年之前 valid-data-url 30f7226d9a first commit 2 年之前 web-resource-inliner 30f7226d9a first commit 2 年之前 webidl-conversions 30f7226d9a first commit 2 年之前 whatwg-url 30f7226d9a first commit 2 年之前 wrap-ansi 30f7226d9a first commit 2 年之前 wrappy 30f7226d9a first commit 2 年之前 y18n 30f7226d9a first commit 2 年之前 yallist 30f7226d9a first commit 2 年之前 yaml 30f7226d9a first commit 2 年之前 yargs 30f7226d9a first commit 2 年之前 yargs-parser 30f7226d9a first commit 2 年之前 .yarn-integrity 30f7226d9a first commit 2 年之前 tum/whitesports - Gogs: Simplico Git Service

Sin descripción

auth.php 784B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php
  2. abstract class NextendSocialAuth {
  3. protected $providerID;
  4. protected $access_token_data;
  5. public function __construct($providerID) {
  6. $this->providerID = $providerID;
  7. }
  8. public function checkError() {
  9. }
  10. /**
  11. * @param string $access_token_data
  12. */
  13. public function setAccessTokenData($access_token_data) {
  14. $this->access_token_data = json_decode($access_token_data, true);
  15. }
  16. public abstract function createAuthUrl();
  17. public abstract function authenticate();
  18. public abstract function get($path, $data = array(), $endpoint = false);
  19. /**
  20. * @return bool
  21. */
  22. public abstract function hasAuthenticateData();
  23. /**
  24. * @return string
  25. */
  26. public abstract function getTestUrl();
  27. }