Esempio n. 1
0
 public function testUri($key)
 {
     if (!$this->keyExists($key)) {
         return false;
     }
     if (Zend_Filter::isUri($this->_source[$key])) {
         return $this->_source[$key];
     }
     return FALSE;
 }
Esempio n. 2
0
 public function isUri($key)
 {
     return Zend_Filter::isUri($this->_source[$key]);
 }
Esempio n. 3
0
 public function testUri($key)
 {
     if (Zend_Filter::isUri($this->_source[$key])) {
         return $this->_source[$key];
     }
     return FALSE;
 }
Esempio n. 4
0
 public function testUri($key = null)
 {
     if (!($value = $this->keyExists($key))) {
         return false;
     }
     if (Zend_Filter::isUri($value)) {
         return $value;
     }
     return FALSE;
 }