Açıklama Yok

wordpress.php 350B

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