[ 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 Health 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: Ccr.php 24779 2012-05-08 19:13:59Z adamlundrigan $ 21 */ 22 23 /** 24 * @see Zend_Exception 25 */ 26 require_once 'Zend/Exception.php'; 27 28 /** 29 * @see Zend_Gdata_App_Extension_Element 30 */ 31 require_once 'Zend/Gdata/App/Extension/Element.php'; 32 33 /** 34 * Concrete class for working with CCR elements. 35 * 36 * @category Zend 37 * @package Zend_Gdata 38 * @subpackage Health 39 * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) 40 * @license http://framework.zend.com/license/new-bsd New BSD License 41 */ 42 class Zend_Gdata_Health_Extension_Ccr extends Zend_Gdata_App_Extension_Element 43 { 44 /** 45 * Creates a Zend_Gdata_Health_Extension_Ccr entry, representing CCR data 46 * 47 * @param DOMElement $element (optional) DOMElement from which this 48 * object should be constructed. 49 */ 50 public function __construct($element = null) 51 { 52 throw new Zend_Exception( 53 'Google Health API has been discontinued by Google and was removed' 54 . ' from Zend Framework in 1.12.0. For more information see: ' 55 . 'http://googleblog.blogspot.ca/2011/06/update-on-google-health-and-google.html' 56 ); 57 } 58 }
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 |