You are here

class ThrobberCubeGrid in Ajax loader 7

@file Class ThrobberCubeGrid

Hierarchy

Expanded class hierarchy of ThrobberCubeGrid

File

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

View source
class ThrobberCubeGrid extends ThrobberBase {

  /**
   * @inheritdoc
   */
  protected function setMarkup() {
    return '<div class="ajax-throbber sk-cube-grid">
              <div class="sk-cube sk-cube1"></div>
              <div class="sk-cube sk-cube2"></div>
              <div class="sk-cube sk-cube3"></div>
              <div class="sk-cube sk-cube4"></div>
              <div class="sk-cube sk-cube5"></div>
              <div class="sk-cube sk-cube6"></div>
              <div class="sk-cube sk-cube7"></div>
              <div class="sk-cube sk-cube8"></div>
              <div class="sk-cube sk-cube9"></div>
            </div>';
  }

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

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

}

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.
ThrobberCubeGrid::setCssFile protected function @inheritdoc Overrides ThrobberBase::setCssFile
ThrobberCubeGrid::setLabel protected function @inheritdoc Overrides ThrobberBase::setLabel
ThrobberCubeGrid::setMarkup protected function @inheritdoc Overrides ThrobberBase::setMarkup