/**
  * {@inheritDoc}
  * @see \Owebia\AdvancedSettingCore\Model\Wrapper\AbstractWrapper::help()
  */
 public function help()
 {
     $source = $this->getSource();
     if ($source) {
         return parent::help();
     } else {
         $output = "Help on " . get_class($this) . " : No source defined";
     }
     return $output;
 }
예제 #2
0
 /**
  * {@inheritDoc}
  * @see \Owebia\ShippingCore\Model\Wrapper\AbstractWrapper::help()
  */
 public function help()
 {
     $source = $this->getSource();
     if ($source) {
         return parent::help();
     } else {
         $output = "Help on " . get_class($this) . " : No source defined";
         // $this->_logger->debugCollapse("Help on " . get_class($this) . " : No source defined", '');
     }
     return $output;
 }