[ Index ] |
PHP Cross Reference of vtigercrm-6.1.0 |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * Zend Framework 4 * 5 * LICENSE 6 * 7 * This source file is subject to the new BSD license that is bundled 8 * with this package in the file LICENSE.txt. 9 * It is also available through the world-wide-web at this URL: 10 * http://framework.zend.com/license/new-bsd 11 * If you did not receive a copy of the license and are unable to 12 * obtain it through the world-wide-web, please send an email 13 * to [email protected] so we can send you a copy immediately. 14 * 15 * @category Zend 16 * @package Zend_Gdata 17 * @subpackage Gbase 18 * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) 19 * @license http://framework.zend.com/license/new-bsd New BSD License 20 * @version $Id: BaseAttribute.php 24777 2012-05-08 18:50:23Z adamlundrigan $ 21 */ 22 23 /** 24 * @see Zend_Gdata_App_Extension_Element 25 */ 26 require_once 'Zend/Gdata/App/Extension/Element.php'; 27 28 /** 29 * Concrete class for working with ItemType elements. 30 * 31 * @category Zend 32 * @package Zend_Gdata 33 * @subpackage Gbase 34 * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) 35 * @license http://framework.zend.com/license/new-bsd New BSD License 36 */ 37 class Zend_Gdata_Gbase_Extension_BaseAttribute extends Zend_Gdata_App_Extension_Element 38 { 39 /** 40 * Create a new instance. 41 * 42 * @param string $name (optional) The name of the Base attribute 43 * @param string $text (optional) The text value of the Base attribute 44 * @param string $text (optional) The type of the Base attribute 45 */ 46 public function __construct($name = null, $text = null, $type = null) 47 { 48 throw new Zend_Exception( 49 'Google Base API has been discontinued by Google and was removed' 50 . ' from Zend Framework in 1.12.0. For more information see: ' 51 . 'http://googlemerchantblog.blogspot.ca/2010/12/new-shopping-apis-and-deprecation-of.html' 52 ); 53 } 54 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Fri Nov 28 20:08:37 2014 | Cross-referenced by PHPXref 0.7.1 |