Нет описания

vk.php 325B

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