You are here

ThrobberThreeBounce.php in Ajax loader 7

Class ThrobberThreeBounce

File

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

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

  /**
   * @inheritdoc
   */
  protected function setMarkup() {
    return '<div class="ajax-throbber sk-three-bounce">
              <div class="sk-child sk-bounce1"></div>
              <div class="sk-child sk-bounce2"></div>
              <div class="sk-child sk-bounce3"></div>
            </div>';
  }

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

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

}

Classes

Namesort descending Description
ThrobberThreeBounce @file Class ThrobberThreeBounce