public function D3LibraryInfoProcessor::process in d3.js 7
Main function to process the info file for the current keys.
1 call to D3LibraryInfoProcessor::process()
- D3ViewsLibraryInfoProcessor::process in modules/
d3_views/ includes/ D3ViewsLibraryInfoProcessor.inc - Main function to process the info file for the current keys.
1 method overrides D3LibraryInfoProcessor::process()
- D3ViewsLibraryInfoProcessor::process in modules/
d3_views/ includes/ D3ViewsLibraryInfoProcessor.inc - Main function to process the info file for the current keys.
File
- includes/
D3LibraryInfoProcessor.inc, line 74 - D3 .info file processor class.
Class
- D3LibraryInfoProcessor
- Parse additional information from library .info files.
Code
public function process() {
$library =& $this->library
->value();
foreach ($this->keys as $key) {
$this
->setKey($key);
$this
->processValues($library[$key]);
}
}