code
stringlengths
1
2.01M
language
stringclasses
1 value
<?php require('../util.php'); $con = openConnection(); $ID = $_REQUEST["id"]; $ticket = $_REQUEST["ticket"]; // $result = mysqli_query($con,"SELECT Name FROM Users WHERE ID='".$ID."' AND Ticket='".$ticket."'"); // if($result->num_rows==1){ if(checkSession($con, $ID, $ticket)){ mysqli_query($con, "UPDATE Us...
PHP
<?php require('../util.php'); $con = openConnection(); $uid = $_REQUEST["uid"]; $ticket = $_REQUEST["ticket"]; if(!checkSession($con, $uid, $ticket)){ echo("{\"error\":\"User not authorized\"}"); die(); } $result = mysqli_query($con, "SELECT Name, Login, EMail FROM Users WHERE ID=".$uid." "); if($r...
PHP
<?php require('../util.php'); require('../captcha/code.php'); $tableName = "Resumes"; $con = openConnection(); $uid = $_REQUEST["uid"]; $ticket = $_REQUEST["ticket"]; $data = $_REQUEST["data"]; $rowID = $data["id"]; $owner = getOwner($con, $tableName, $rowID); if(!checkSession($con, $uid, $ticket)...
PHP
<?php require('../util.php'); $con = openConnection(); $uid = $_REQUEST["uid"]; $ticket = $_REQUEST["ticket"]; $rowCount = $_REQUEST["rowCount"]; $pageNr = $_REQUEST["pageNr"]; $owner = $_REQUEST["owner"]; //conditions $condCount = $_REQUEST["count"]; $condKeywords = $_REQUEST["keywords"]; $condPeriod = ...
PHP
<?php require('../util.php'); $tableName = "Vacancies"; $con = openConnection(); $uid = $_REQUEST["uid"]; $ticket = $_REQUEST["ticket"]; $vacID = $_REQUEST["vacID"]; $owner = getOwner($con, $tableName, $vacID); if(!checkSession($con, $uid, $ticket) && $owner!=$uid){ writeError("Access denied."); d...
PHP
<?php require('../util.php'); require('../captcha/code.php'); $con = openConnection(); $uid = $_REQUEST["uid"]; $ticket = $_REQUEST["ticket"]; $data = $_REQUEST["data"]; if(!checkSession($con, $uid, $ticket)){ $uid = null; } if(!captcha_check($data["captcha"]["code"], $data["captcha"]["key"])){ ech...
PHP
<?php require('../util.php'); $con = openConnection(); $uid = $_REQUEST["uid"]; $ticket = $_REQUEST["ticket"]; $ID = $_REQUEST["id"]; $filter = " Owner is NULL"; if(checkSession($con, $uid, $ticket)){ $filter = $filter." or Owner='".$uid."'"; } $result = mysqli_query($con, "SELECT * FROM Resumes WHER...
PHP
<?php require('../util.php'); $con = openConnection(); $uid = $_REQUEST["uid"]; $ticket = $_REQUEST["ticket"]; $rowCount = $_REQUEST["rowCount"]; $pageNr = $_REQUEST["pageNr"]; $owner = $_REQUEST["owner"]; // conditions $condCount = $_REQUEST["count"]; $condEducation = $_REQUEST["education"]; $condExperi...
PHP
<?php require('../util.php'); $con = openConnection(); $rowCount = 3; echo("{\"res\":["); $resumes = mysqli_query($con,"SELECT * FROM Resumes LIMIT ".$rowCount); $first = true; while($row = mysqli_fetch_array($resumes)){ if(!$first) echo(","); else $first = false; echo("{"); writeJsonField($row, "Tit...
PHP
<?php $psw = $_REQUEST["psw"]; echo(md5($psw));
PHP
<?php session_start(); $ticket = $_SESSION["ticket"]; if($ticket==''){ header('Location: logon.php'); die(); } ?> <!DOCTYPE html> <html> <head> <?php // $ticket = $_SESSION["ticket"]; // if($ticket==''){ // echo('<meta http-equiv="refresh" content="0; url=logon.php">'); // echo('</head></...
PHP
<?php require('util.php'); require('providers/factory.php'); $catRef = explode("/", $_REQUEST["catID"]); $treeCatID = $catRef[0]; $dbCatID = $catRef[1]; $allMode = $_REQUEST["all"]=='1'; $ticket = $_REQUEST["ticket"]; function writeColumns($treeCatID, $dbCatID, $allMode){ $treeProvider = ProviderFactory:...
PHP
<?php require('util.php'); require('providers/factory.php'); $catRef = explode("/", $_REQUEST["catID"]); $treeCatID = $catRef[0]; $dbCatID = $catRef[1]; function writeTableRows($treeCatID, $dbCatID){ $treeProvider = ProviderFactory::getTree(); $tblRef = $treeProvider->getTableRef($treeCatID, $dbCatID);...
PHP
<?php require('xmldb.php'); require('xmlTree.php'); require('xmlusersdb.php'); require('xmlUserSessions.php'); class ProviderFactory{ static function getDBTypes(){ return array( 'xmlDB'=>'XmlDB', 'xmlUsersDB'=>'XmlUsersDB' ); } static function getSessions($baseDir){ return new XmlUsers...
PHP
<?php class XmlDB{ static $idField = "xmlDBID"; function __construct($db){ $this->db = $db; } function writeLinkedNodes($link, $el, $permissions, $defaultVisibility){ $db = $link->getAttribute("xmldb"); $tableName = $link->getAttribute("table"); $parentID = $el->getAttribute("id"); ...
PHP
<?php require('util.php'); require('providers/factory.php'); $ticket = $_REQUEST["ticket"]; function writeDBTypes($ticket){ if(!Util::checkAccess($ticket, null)){ Util::writeError('errAuthorizationRequired'); die(); } $types = ProviderFactory::getDBTypes(); echo('['); echo('{"id":"none","t...
PHP
<?php require('util.php'); require('providers/factory.php'); $catRef = explode("/", $_REQUEST["catID"]); $treeCatID = $catRef[0]; $dbCatID = $catRef[1]; $data = $_REQUEST["data"]; $ticket = $_REQUEST["ticket"]; function saveCatalogProperties($catRef, $treeCatID, $dbCatID, $data, $ticket){ // var_dump(arr...
PHP
<?php class Util{ static function conv($str){ return iconv("UTF-8", "windows-1251", $str); } static function checkAccess($ticket, $catID){ $sessions = ProviderFactory::getSessions('xmlData/'); $userID = $sessions->getAuthorizedUser($ticket); if($userID==null){ self::writeError('errAuthoriz...
PHP
<?php require('util.php'); require('providers/factory.php'); $catRef = explode("/", $_REQUEST["catID"]); $treeCatID = $catRef[0]; $dbCatID = $catRef[1]; $ticket = $_REQUEST["ticket"]; $rowIDs = $_REQUEST["rowIDs"]; function writeResult($treeCatID, $dbCatID, $rowIDs){ $treeProvider = ProviderFactory::getT...
PHP
<?php require('util.php'); require('providers/factory.php'); $rootID = $_REQUEST["rootID"]; $depth = $_REQUEST["depth"]; $includeRoot = $_REQUEST["includeRoot"]; $excludeBranch = $_REQUEST["excludeBranch"]; $ticket = $_REQUEST["ticket"]; $thisDBOnly = $_REQUEST["thisDBOnly"]=='true'; $permissions = Util::...
PHP
<?php require('util.php'); require('providers/factory.php'); $recID = $_REQUEST["recID"]; $catRef = explode("/", $_REQUEST["catID"]); $treeCatID = $catRef[0]; $dbCatID = $catRef[1]; $ticket = $_REQUEST["ticket"]; $data = $_REQUEST["data"]; function writeResult($treeCatID, $dbCatID, $recID, $data){ $tr...
PHP
<?php require('util.php'); require('providers/factory.php'); $recID = $_REQUEST["recID"]; $catRef = explode("/", $_REQUEST["catID"]); $treeCatID = $catRef[0]; $dbCatID = $catRef[1]; function writeRecordData($treeCatID, $dbCatID, $recID){ $treeProvider = ProviderFactory::getTree(); $tblRef = $treePro...
PHP
<?php require('util.php'); require('providers/factory.php'); $catRef = explode("/", $_REQUEST["catID"]); $treeCatID = $catRef[0]; $dbCatID = $catRef[1]; $ticket = $_REQUEST["ticket"]; function writeCatData($treeCatID, $dbCatID, $ticket){ $treeProvider = ProviderFactory::getTree(); if($dbCatID==null){ ...
PHP
<?php require('util.php'); require('providers/factory.php'); $recID = $_REQUEST["recID"]; $catRef = explode("/", $_REQUEST["catID"]); $treeCatID = $catRef[0]; $dbCatID = $catRef[1]; $data = $_REQUEST["data"]; function writeRefRows($treeCatID, $dbCatID, $recID){ $treeProvider = ProviderFactory::getTree(...
PHP
<?php require('util.php'); require('providers/factory.php'); $grpID = $_REQUEST["grpID"]; $ticket = $_REQUEST["ticket"]; if($ticket==''){ echo("{\"error\":\"errAuthorizationRequired\"}"); die(); } function writePermissions($grpID){ $provider = ProviderFactory::getUsers(); $provider->writeUserPer...
PHP
<?php class DB{ const DOCPATH = "test/db.xml"; function __construct(){ $this->xmlDoc = new DOMDocument(); $this->xmlDoc->load(self::DOCPATH); } function __destruct(){ //$this->save(); } function save(){ $this->xmlDoc->save(self::DOCPATH); } function getX...
PHP
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>Пример авторизации</title> </head> <body> <h1>Пример авторизации</h1> <p>Это пример авторизации с помощью передачи ticket'а.</p> <p><a href="logon.php">Reload</a></p> <?php include ("test/db.php"); $d...
PHP
<?php $yhendus=new mysqli("localhost", "if13", "ifikad", "if13_sarkkr"); session_start(); if(!isSet($_SESSION["kasutajanimi"])){ header("Location: sisselogimine.php"); exit(); } if($_SESSION["roll"]!="haldur"){ header("Location: sisselogimine.php"); exit(); } if(isSet($_REQUEST["kustutus...
PHP
<?php require_once("konf.php"); if(isSet($_REQUEST["sisestusnupp"])){ $kask=$yhendus->prepare("INSERT INTO parandused(kirjeldus, a_aeg) VALUES (?, NOW()"); echo $yhendus->error; $kask->bind_param("s", $_REQUEST["kirjeldus"]); $kask->execute(); $yhendus->close(); header("Location: $_SERVER[PHP_SELF]?lisatudkirjeldus=$...
PHP
<?php require_once("konf.php"); if(isSet($_REQUEST["sisestusnupp"])){ $kask=$yhendus->prepare("INSERT INTO parandused(kirjeldus) VALUES (?)"); echo $yhendus->error; $kask->bind_param("s", $_REQUEST["kirjeldus"]); $kask->execute(); $yhendus->close(); header("Location: $_SERVER[PHP_SELF]?lisatudkirjeldus=$_REQUEST[kirj...
PHP
<?php $yhendus=new mysqli("localhost", "if13", "ifikad", "if13_sarkkr"); session_start(); if(isSet($_REQUEST["kasutajanimi"])){ $kask=$yhendus->prepare( "SELECT roll FROM kasutajad1 WHERE knimi=? AND paroolir2si=PASSWORD(?)"); $knimiparool=$_REQUEST["kasutajanimi"]."_".$_REQUEST["parool"]; $kask->bind_param("ss"...
PHP
<?php $baasiaadress="localhost"; $baasikasutaja="if13"; $baasiparool="ifikad"; $baasinimi="if13_sarkkr"; $yhendus=new mysqli($baasiaadress, $baasikasutaja, $baasiparool, $baasinimi);
PHP
<?php $error = ""; if (isset($GLOBALS["HTTP_RAW_POST_DATA"])) { // get bytearray $jpg = $GLOBALS["HTTP_RAW_POST_DATA"]; $fp = fopen("images/".$_GET['id'].".jpg","wb"); fwrite($fp,$jpg); fclose($fp); } ?>
PHP
<?php // image class class clsImage { // private vars var $im; var $max_size; var $type; var $width; var $height; var $size; var $error; var $imageTypes; var $loaded; // constructor function clsImage(){ $this->loaded = false; $this->max_size = 1000000; $this->imageTypes = array( ...
PHP
<?php require_once("php/clsImage.php"); if(isset($_GET['id'])){ $img = new clsImage(); if(is_file("images/".$_GET['id'].".jpg")){ $img->load("images/".$_GET['id'].".jpg"); } else { $img->load("images/blank.jpg"); } $img->display(); } else { echo "error"; } ?>
PHP
<?php namespace Setnet\JuanMarcetBundle; use Symfony\Component\HttpKernel\Bundle\Bundle; class SetnetJuanMarcetBundle extends Bundle { }
PHP
<?php namespace Setnet\JuanMarcetBundle\Controller; use Symfony\Bundle\FrameworkBundle\Controller\Controller; class DefaultController extends Controller { public function indexAction() { return $this->render('SetnetJuanMarcetBundle:Default:index.html.twig'); } }
PHP
<?php namespace Setnet\JuanMarcetBundle\Tests\Controller; use Symfony\Bundle\FrameworkBundle\Test\WebTestCase; class DefaultControllerTest extends WebTestCase { public function testIndex() { $client = static::createClient(); $crawler = $client->request('GET', '/hello/Fabien'); $this...
PHP
<?php namespace Setnet\JuanMarcetBundle\DependencyInjection; use Symfony\Component\Config\Definition\Builder\TreeBuilder; use Symfony\Component\Config\Definition\ConfigurationInterface; /** * This is the class that validates and merges configuration from your app/config files * * To learn more see {@link http://s...
PHP
<?php namespace Setnet\JuanMarcetBundle\DependencyInjection; use Symfony\Component\DependencyInjection\ContainerBuilder; use Symfony\Component\Config\FileLocator; use Symfony\Component\HttpKernel\DependencyInjection\Extension; use Symfony\Component\DependencyInjection\Loader; /** * This is the class that loads and ...
PHP
<?php namespace Acme\DemoBundle\EventListener; use Symfony\Component\HttpKernel\HttpKernelInterface; use Symfony\Component\HttpKernel\Event\FilterControllerEvent; use Acme\DemoBundle\Twig\Extension\DemoExtension; class ControllerListener { protected $extension; public function __construct(DemoExtension $ext...
PHP
<?php namespace Acme\DemoBundle\Controller; use Symfony\Bundle\FrameworkBundle\Controller\Controller; use Symfony\Component\HttpFoundation\RedirectResponse; use Acme\DemoBundle\Form\ContactType; // these import the "@Route" and "@Template" annotations use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route; use S...
PHP
<?php namespace Acme\DemoBundle\Controller; use Symfony\Bundle\FrameworkBundle\Controller\Controller; use Symfony\Component\Security\Core\SecurityContext; use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route; use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template; use JMS\SecurityExtraBundle\Annotation\S...
PHP
<?php namespace Acme\DemoBundle\Controller; use Symfony\Bundle\FrameworkBundle\Controller\Controller; class WelcomeController extends Controller { public function indexAction() { /* * The action's view can be rendered using render() method * or @Template annotation as demonstrated i...
PHP
<?php namespace Acme\DemoBundle\Twig\Extension; use CG\Core\ClassUtils; class DemoExtension extends \Twig_Extension { protected $loader; protected $controller; public function __construct(\Twig_LoaderInterface $loader) { $this->loader = $loader; } public function setController($cont...
PHP
<?php namespace Acme\DemoBundle\Form; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\FormBuilderInterface; class ContactType extends AbstractType { public function buildForm(FormBuilderInterface $builder, array $options) { $builder->add('email', 'email'); $builder->add('m...
PHP
<?php namespace Acme\DemoBundle\Tests\Controller; use Symfony\Bundle\FrameworkBundle\Test\WebTestCase; class DemoControllerTest extends WebTestCase { public function testIndex() { $client = static::createClient(); $crawler = $client->request('GET', '/demo/hello/Fabien'); $this->asse...
PHP
<?php namespace Acme\DemoBundle\DependencyInjection; use Symfony\Component\DependencyInjection\ContainerBuilder; use Symfony\Component\DependencyInjection\Loader\XmlFileLoader; use Symfony\Component\HttpKernel\DependencyInjection\Extension; use Symfony\Component\Config\FileLocator; class AcmeDemoExtension extends Ex...
PHP
<?php namespace Acme\DemoBundle; use Symfony\Component\HttpKernel\Bundle\Bundle; class AcmeDemoBundle extends Bundle { }
PHP
<?php require_once __DIR__.'/AppKernel.php'; use Symfony\Bundle\FrameworkBundle\HttpCache\HttpCache; class AppCache extends HttpCache { }
PHP
#!/usr/bin/env php <?php // if you don't want to setup permissions the proper way, just uncomment the following PHP line // read http://symfony.com/doc/current/book/installation.html#configuration-and-setup for more information //umask(0000); set_time_limit(0); require_once __DIR__.'/bootstrap.php.cache'; require_on...
PHP
<?php use Symfony\Component\HttpKernel\Kernel; use Symfony\Component\Config\Loader\LoaderInterface; class AppKernel extends Kernel { public function registerBundles() { $bundles = array( new Symfony\Bundle\FrameworkBundle\FrameworkBundle(), new Symfony\Bundle\SecurityBundle\Sec...
PHP
<?php use Doctrine\Common\Annotations\AnnotationRegistry; use Composer\Autoload\ClassLoader; /** * @var $loader ClassLoader */ $loader = require __DIR__.'/../vendor/autoload.php'; // intl if (!function_exists('intl_get_error_code')) { require_once __DIR__.'/../vendor/symfony/symfony/src/Symfony/Component/Local...
PHP
#!/usr/bin/env php <?php // if you don't want to setup permissions the proper way, just uncomment the following PHP line // read http://symfony.com/doc/current/book/installation.html#configuration-and-setup for more information //umask(0000); set_time_limit(0); require_once __DIR__.'/bootstrap.php.cache'; require_on...
PHP
<?php require_once dirname(__FILE__).'/SymfonyRequirements.php'; $symfonyRequirements = new SymfonyRequirements(); $iniPath = $symfonyRequirements->getPhpIniConfigPath(); echo "********************************\n"; echo "* *\n"; echo "* Symfony requirements check *\n"; echo "* ...
PHP
<?php use Symfony\Component\HttpFoundation\Request; // If you don't want to setup permissions the proper way, just uncomment the following PHP line // read http://symfony.com/doc/current/book/installation.html#configuration-and-setup for more information //umask(0000); // This check prevents access to debug front co...
PHP
<?php use Symfony\Component\ClassLoader\ApcClassLoader; use Symfony\Component\HttpFoundation\Request; $loader = require_once __DIR__.'/../app/bootstrap.php.cache'; // Use APC for autoloading to improve performance. // Change 'sf2' to a unique prefix in order to prevent cache key conflicts // with other applications ...
PHP
<?php if (!isset($_SERVER['HTTP_HOST'])) { exit('This script cannot be run from the CLI. Run it from a browser.'); } if (!in_array(@$_SERVER['REMOTE_ADDR'], array( '127.0.0.1', '::1', ))) { header('HTTP/1.0 403 Forbidden'); exit('This script is only accessible from localhost.'); } require_once di...
PHP
<?php /** * Class for handling authentication of the user and authorization * to access Google Drive. * * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at *...
PHP
<?php /** * Outputs DrEdit PHP user interface. Needs OAuth URLs and the values of * query params in order to setup the UI. These are set as javascript * vars based on PHP processing. * * @author Ryan Boyd <rboyd@google.com> * * If the user's picture is set, it is included in the interface to mitigate * potent...
PHP
<?php /** * Class for accessing the Google Drive API, including retrieving, * creating and updating files stored in Google Drive. * * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtai...
PHP
<?php /* * Copyright 2010 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agre...
PHP
<?php /* * Copyright 2010 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agre...
PHP
<?php /* * Copyright 2010 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agre...
PHP
<?php /* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agre...
PHP
<?php /* * Copyright 2010 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agre...
PHP
<?php /** * Copyright 2010 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agr...
PHP
<?php /* * Copyright 2010 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agre...
PHP
<?php /* * Copyright 2010 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agr...
PHP
<?php /* * Copyright 2011 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agre...
PHP
<?php /* * Copyright 2011 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agre...
PHP
<?php /** * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agr...
PHP
<?php /** * Copyright 2010 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agr...
PHP
<?php /* * Copyright 2010 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agre...
PHP
<?php /* * Copyright 2011 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agre...
PHP
<?php /* * Copyright 2011 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agre...
PHP
<?php /* * Copyright 2008 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agre...
PHP
<?php /* * Copyright 2011 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agre...
PHP
<?php /* * Copyright 2010 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agre...
PHP
<?php /* * Copyright 2011 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agre...
PHP
<?php /* * Copyright 2010 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agre...
PHP
<?php /* * Copyright 2008 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agre...
PHP
<?php /* * Copyright 2011 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agre...
PHP
<?php /* * Copyright (c) 2010 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agre...
PHP
<?php /* * Copyright (c) 2010 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agre...
PHP
<?php /* * Copyright (c) 2010 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agre...
PHP
<?php /* * Copyright (c) 2010 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agre...
PHP
<?php /* * Copyright (c) 2010 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agre...
PHP
<?php /* * Copyright (c) 2010 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agre...
PHP
<?php /* * Copyright (c) 2010 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agre...
PHP
<?php /* * Copyright (c) 2010 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agre...
PHP
<?php /* * Copyright (c) 2010 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agre...
PHP
<?php /* * Copyright (c) 2010 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agre...
PHP
<?php /* * Copyright (c) 2010 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agre...
PHP
<?php /* * Copyright (c) 2010 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agre...
PHP
<?php /* * Copyright (c) 2010 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agre...
PHP
<?php /* * Copyright (c) 2010 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agre...
PHP
<?php /* * Copyright (c) 2010 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agre...
PHP
<?php /* * Copyright (c) 2010 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agre...
PHP
<?php /* * Copyright (c) 2010 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agre...
PHP