public function FeedsImportBatch::setTitle in Feeds 6
Same name and namespace in other branches
- 7 includes/FeedsBatch.inc \FeedsImportBatch::setTitle()
Set title.
Deprecated
This method is deprecated. Access directly instead. For example: $batch->title = $title;
File
- includes/
FeedsBatch.inc, line 287
Class
- FeedsImportBatch
- A FeedsImportBatch wraps the actual content retrieved from a FeedsSource. On import, it is created on the fetching stage and passed through the parsing and processing stage where it is normalized and consumed.
Code
public function setTitle($title) {
$this->title = $title;
}