/**
  * Retrieve label of attribute scope
  *
  * GLOBAL | WEBSITE | STORE
  *
  * @return string
  */
 public function getScopeLabel()
 {
     $html = parent::getScopeLabel();
     $html .= '<div class="scopehint" style="padding: 6px 6px 0 6px; display: inline-block;">';
     $html .= $this->_getScopeHintHtml($this->getElement());
     $html .= '</div>';
     return $html;
 }