You are here

class ThrobberWanderingCubes in Ajax loader 7

@file Class ThrobberWanderingCubes

Hierarchy

Expanded class hierarchy of ThrobberWanderingCubes

File

lib/throbber/ThrobberWanderingCubes.php, line 8
Class ThrobberWanderingCubes

View source
class ThrobberWanderingCubes extends ThrobberBase {

  /**
   * @inheritdoc
   */
  protected function setMarkup() {
    return '<div class="ajax-throbber sk-wandering-cubes">
              <div class="sk-cube sk-cube1"></div>
              <div class="sk-cube sk-cube2"></div>
            </div>';
  }

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

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

}

Members

Namesort descending Modifiers Type Description Overrides
ThrobberBase::$css_file protected property
ThrobberBase::$label protected property
ThrobberBase::$markup protected property
ThrobberBase::$path protected property
ThrobberBase::getCssFile public function Overrides ThrobberInterface::getCssFile
ThrobberBase::getLabel public function Overrides ThrobberInterface::getLabel
ThrobberBase::getMarkup public function Overrides ThrobberInterface::getMarkup
ThrobberBase::__construct public function ThrobberBase constructor.
ThrobberWanderingCubes::setCssFile protected function @inheritdoc Overrides ThrobberBase::setCssFile
ThrobberWanderingCubes::setLabel protected function @inheritdoc Overrides ThrobberBase::setLabel
ThrobberWanderingCubes::setMarkup protected function @inheritdoc Overrides ThrobberBase::setMarkup