protected function _getFlashData()
 {
     $ret = parent::_getFlashData();
     $ret['url'] = $this->_getSetting('playerPath');
     $ret['width'] = $this->_getRow()->width;
     $ret['height'] = $this->_getRow()->height;
     $ret['params']['allowfullscreen'] = true;
     return $ret;
 }
 protected function _getFlashData()
 {
     $ret = parent::_getFlashData();
     $ret['url'] = $this->_getUploadUrl();
     $ret['width'] = $this->_getRow()->width;
     $ret['height'] = $this->_getRow()->height;
     $ret['params'] = array('allowfullscreen' => $this->_getRow()->allow_fullscreen ? 'true' : 'false', 'menu' => $this->_getRow()->menu ? 'true' : 'false');
     return $ret;
 }