setFeature('images', false, 'product_capability'); $this->setFeature('iframes', false, 'product_capability'); $this->setFeature('frames', false, 'product_capability'); $this->setFeature('javascript', false, 'product_capability'); return parent::_defineFeatures(); } /** * Determine supported image formats * * @return null */ public function getImageFormatSupport() { return null; } /** * Get preferred markup format * * @return string */ public function getPreferredMarkup() { return 'xhtml'; } /** * Get supported X/HTML markup level * * @return int */ public function getXhtmlSupportLevel() { return 1; } /** * Does the device support Flash? * * @return bool */ public function hasFlashSupport() { return false; } /** * Does the device support PDF? * * @return bool */ public function hasPdfSupport() { return false; } }