function onInitializePlugin()
 {
     parent::onInitializePlugin();
     if (!isset($this->serviceUrl)) {
         throw new Exception("must specify a serviceUrl");
     }
 }
 function onInitializePlugin()
 {
     parent::onInitializePlugin();
     if (!isset($this->serviceUrl)) {
         throw new Exception(_m('A serviceUrl must be specified.'));
     }
 }
 function onInitializePlugin()
 {
     parent::onInitializePlugin();
     if (!isset($this->serviceUrl)) {
         throw new Exception(_m("You must specify a serviceUrl for bit.ly shortening."));
     }
 }
Beispiel #4
0
 function onInitializePlugin()
 {
     parent::onInitializePlugin();
     if (!isset($this->serviceUrl)) {
         // TRANS: Exception thrown when URL shortening plugin was configured incorrectly.
         throw new Exception(_m('You must specify a serviceUrl for ptit URL shortening.'));
     }
 }
 function onInitializePlugin()
 {
     parent::onInitializePlugin();
     if (!isset($this->serviceUrl)) {
         // TRANS: Exception thrown when the TightUrl plugin has been configured incorrectly.
         throw new Exception(_m('You must specify a serviceUrl.'));
     }
 }