-
WIBUHAX0R1337
-
/
home
/
cideo
/
library
/
Zend
/
Service
/
Technorati
/
[ Home ]
Create Folder
Create File
Nama File / Folder
Size
Action
Author.php
6.485KB
Edit File
Delete File
Rename
BlogInfoResult.php
4.648KB
Edit File
Delete File
Rename
CosmosResult.php
4.204KB
Edit File
Delete File
Rename
CosmosResultSet.php
5.411KB
Edit File
Delete File
Rename
DailyCountsResult.php
2.575KB
Edit File
Delete File
Rename
DailyCountsResultSet.php
3.696KB
Edit File
Delete File
Rename
Exception.php
1.193KB
Edit File
Delete File
Rename
GetInfoResult.php
2.828KB
Edit File
Delete File
Rename
KeyInfoResult.php
3.248KB
Edit File
Delete File
Rename
Result.php
3.559KB
Edit File
Delete File
Rename
ResultSet.php
7.655KB
Edit File
Delete File
Rename
SearchResult.php
3.937KB
Edit File
Delete File
Rename
SearchResultSet.php
2.584KB
Edit File
Delete File
Rename
TagResult.php
4.524KB
Edit File
Delete File
Rename
TagResultSet.php
3.328KB
Edit File
Delete File
Rename
TagsResult.php
2.493KB
Edit File
Delete File
Rename
TagsResultSet.php
2.2KB
Edit File
Delete File
Rename
Utils.php
4.295KB
Edit File
Delete File
Rename
Weblog.php
12.642KB
Edit File
Delete File
Rename
<?php /** * Zend Framework * * LICENSE * * This source file is subject to the new BSD license that is bundled * with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * http://framework.zend.com/license/new-bsd * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to license@zend.com so we can send you a copy immediately. * * @category Zend * @package Zend_Service * @subpackage Technorati * @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License * @version $Id: SearchResult.php 8064 2008-02-16 10:58:39Z thomas $ */ /** * @see Zend_Service_Technorati_Result */ require_once 'Zend/Service/Technorati/Result.php'; /** * Represents a single Technorati Search query result object. * It is never returned as a standalone object, * but it always belongs to a valid Zend_Service_Technorati_SearchResultSet object. * * @category Zend * @package Zend_Service * @subpackage Technorati * @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Service_Technorati_SearchResult extends Zend_Service_Technorati_Result { /** * Technorati weblog object corresponding to queried keyword. * * @var Zend_Service_Technorati_Weblog * @access protected */ protected $_weblog; /** * The title of the entry. * * @var string * @access protected */ protected $_title; /** * The blurb from entry with search term highlighted. * * @var string * @access protected */ protected $_excerpt; /** * The datetime the entry was created. * * @var Zend_Date * @access protected */ protected $_created; /** * The permalink of the blog entry. * * @var Zend_Uri_Http * @access protected */ protected $_permalink; /** * Constructs a new object object from DOM Element. * * @param DomElement $dom the ReST fragment for this object */ public function __construct(DomElement $dom) { $this->_fields = array( '_permalink' => 'permalink', '_excerpt' => 'excerpt', '_created' => 'created', '_title' => 'title'); parent::__construct($dom); // weblog object field $this->_parseWeblog(); // filter fields $this->_permalink = Zend_Service_Technorati_Utils::normalizeUriHttp($this->_permalink); $this->_created = Zend_Service_Technorati_Utils::normalizeDate($this->_created); } /** * Returns the weblog object that links queried URL. * * @return Zend_Service_Technorati_Weblog */ public function getWeblog() { return $this->_weblog; } /** * Returns the title of the entry. * * @return string */ public function getTitle() { return $this->_title; } /** * Returns the blurb from entry with search term highlighted. * * @return string */ public function getExcerpt() { return $this->_excerpt; } /** * Returns the datetime the entry was created. * * @return Zend_Date */ public function getCreated() { return $this->_created; } /** * Returns the permalink of the blog entry. * * @return Zend_Uri_Http */ public function getPermalink() { return $this->_permalink; } }
Save!!!
© 2022 - 2023 WIBUHAXOR V1 By Lutfifakee || Padang Blackhat