ElggPluginManifest::getScreenshots PHP Méthode

getScreenshots() public méthode

Return the screenshots listed.
public getScreenshots ( ) : array
Résultat array
    public function getScreenshots()
    {
        $ss = $this->parser->getAttribute('screenshot');
        if (!$ss) {
            $ss = array();
        }
        $normalized = array();
        foreach ($ss as $s) {
            $normalized[] = $this->buildStruct($this->screenshotStruct, $s);
        }
        return $normalized;
    }