System:App:getModulesAwaitingInstall

From Aspen Documentation

Returns an array of all modules awaiting install

Since 1.0

Arguments

array getModulesAwaitingInstall ()

Returns

Returns an array of modules currently awaiting install.

Examples

If we have a module called "blog" that has not yet been installed, the function will return an array.

$this->APP->getModulesAwaitingInstall();

Returns:

Array
(
    [0] => Array
        (
            [type] => Module
            [guid] => 5f1d4368-f946-b242-7e41-d58a03d6a858
            [classname] => Blog
            [name] => Blog
            [folder] => Blog
        )

)