2f1f3dae1134455/app/node_modules/sucrase">sucrase 30f7226d9a first commit 3 jaren geleden supports-preserve-symlinks-flag 30f7226d9a first commit 3 jaren geleden tailwind-color-palette 30f7226d9a first commit 3 jaren geleden tailwindcss 30f7226d9a first commit 3 jaren geleden thenify 30f7226d9a first commit 3 jaren geleden thenify-all 30f7226d9a first commit 3 jaren geleden to-regex-range 30f7226d9a first commit 3 jaren geleden tr46 30f7226d9a first commit 3 jaren geleden ts-interface-checker 30f7226d9a first commit 3 jaren geleden uglify-js 30f7226d9a first commit 3 jaren geleden underscore 30f7226d9a first commit 3 jaren geleden upper-case 30f7226d9a first commit 3 jaren geleden util-deprecate 30f7226d9a first commit 3 jaren geleden valid-data-url 30f7226d9a first commit 3 jaren geleden web-resource-inliner 30f7226d9a first commit 3 jaren geleden webidl-conversions 30f7226d9a first commit 3 jaren geleden whatwg-url 30f7226d9a first commit 3 jaren geleden wrap-ansi 30f7226d9a first commit 3 jaren geleden wrappy 30f7226d9a first commit 3 jaren geleden y18n 30f7226d9a first commit 3 jaren geleden yallist 30f7226d9a first commit 3 jaren geleden yaml 30f7226d9a first commit 3 jaren geleden yargs 30f7226d9a first commit 3 jaren geleden yargs-parser 30f7226d9a first commit 3 jaren geleden .yarn-integrity 30f7226d9a first commit 3 jaren geleden tum/whitesports - Gogs: Simplico Git Service

Nav apraksta

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. }