PHP Class Swiftriver\Core\Modules\SiSPS\Parsers\FrontlineSMSParser

Inheritance: implements Swiftriver\Core\Modules\SiSPS\Parsers\IParser
Show file Open project: ushahidi/Swiftriver-2011

Public Methods

Method Description
GetAndParse ( Channel $channel ) : Swiftriver\Core\ObjectModel\Content[] Implementation of IParser::GetAndParse
ListSubTypes ( ) : string[] This method returns a string array with the names of all the source types this parser is designed to parse. For example the FrontlineParser may return array("SMS");
ReturnRequiredParameters ( ) : array() This method returns an array of the required parameters that are necessary to run this parser. The Array should be in the following format: array( "SubType" => array ( ConfigurationElements ) )
ReturnType ( ) : string This method returns a string describing the type of sources it can parse. For example, the FeedsParser returns "Feeds".
localDBClose ( $myConnection )
localDBOpen ( $host, $user, $password, $database )
localDBReturnMessages ( $myConnection, $messageTable = 'message', $lastMessageDate )

Private Methods

Method Description
getLocalContentItems ( Channel $channel, $logger ) : array() Gets content items from the server
getRemoteContentItems ( Channel $channel, $logger, string $serverURL ) : array() Gets content items from the server

Method Details

GetAndParse() public method

Implementation of IParser::GetAndParse
public GetAndParse ( Channel $channel ) : Swiftriver\Core\ObjectModel\Content[]
$channel Swiftriver\Core\ObjectModel\Channel
return Swiftriver\Core\ObjectModel\Content[] contentItems

ListSubTypes() public method

This method returns a string array with the names of all the source types this parser is designed to parse. For example the FrontlineParser may return array("SMS");
public ListSubTypes ( ) : string[]
return string[]

ReturnRequiredParameters() public method

This method returns an array of the required parameters that are necessary to run this parser. The Array should be in the following format: array( "SubType" => array ( ConfigurationElements ) )
public ReturnRequiredParameters ( ) : array()
return array()

ReturnType() public method

This method returns a string describing the type of sources it can parse. For example, the FeedsParser returns "Feeds".
public ReturnType ( ) : string
return string type of sources parsed

localDBClose() public method

public localDBClose ( $myConnection )

localDBOpen() public method

public localDBOpen ( $host, $user, $password, $database )

localDBReturnMessages() public method

public localDBReturnMessages ( $myConnection, $messageTable = 'message', $lastMessageDate )