You are here

GoogleFeeder.php in Google Search Appliance 6.2

Same filename and directory in other branches
  1. 5 GoogleFeeder.php

File

GoogleFeeder.php
View source
<?php

class GoogleFeeder {
  private $_metaData = array();
  public function addMetaData($label, $value) {
  }
  public function addLanguages($languages = NULL) {
  }
  public function addDate($date) {
  }
  public function addKeywords($keys) {
  }
  public function getMetaData($key = NULL) {
    if (!$key) {
      return $this->_metaData;
    }
    else {
      if (isset($this->_metaData[$key])) {
        return $this->_metaData[$key];
      }
      else {
        throw new Exception("Meta Data Code not found", E_WARNING);
      }
    }
  }

}

Classes

Namesort descending Description
GoogleFeeder