You are here

ThrobberPulse.php in Ajax loader 7

Class ThrobberPulse

File

lib/throbber/ThrobberPulse.php
View source
<?php

/**
 * @file
 * Class ThrobberPulse
 */
class ThrobberPulse extends ThrobberBase {

  /**
   * @inheritdoc
   */
  protected function setMarkup() {
    return '<div class="ajax-throbber sk-spinner sk-spinner-pulse"></div>';
  }

  /**
   * @inheritdoc
   */
  protected function setCssFile() {
    return $this->path . '/css/pulse.css';
  }

  /**
   * @inheritdoc
   */
  protected function setLabel() {
    return 'Pulse';
  }

}

Classes

Namesort descending Description
ThrobberPulse @file Class ThrobberPulse