Нет описания

github.php 334B

1234567891011121314
  1. <?php
  2. class NextendSocialProviderGitHub extends NextendSocialProviderDummy {
  3. protected $color = '#24292e';
  4. public function __construct() {
  5. $this->id = 'github';
  6. $this->label = 'GitHub';
  7. $this->path = dirname(__FILE__);
  8. }
  9. }
  10. NextendSocialLogin::addProvider(new NextendSocialProviderGitHub());