public function FeedsParser::providesSourceTitle in Feeds 7.2
Returns if the parsed result can have a title.
Parser classes should override this method in case they support a source title.
Return value
bool TRUE if the parsed result can have a title. FALSE otherwise.
3 methods override FeedsParser::providesSourceTitle()
- FeedsOPMLParser::providesSourceTitle in plugins/
FeedsOPMLParser.inc - Overrides FeedsParser::providesSourceTitle().
- FeedsSimplePieParser::providesSourceTitle in plugins/
FeedsSimplePieParser.inc - Overrides FeedsParser::providesSourceTitle().
- FeedsSyndicationParser::providesSourceTitle in plugins/
FeedsSyndicationParser.inc - Overrides FeedsParser::providesSourceTitle().
File
- plugins/
FeedsParser.inc, line 185 - Contains FeedsParser and related classes.
Class
- FeedsParser
- Abstract class, defines interface for parsers.
Code
public function providesSourceTitle() {
return FALSE;
}