this-> GetPlugInInstalled

(Caronte Pcode version 2.0)

Description

void this->GetPlugInInstalled (HashArray store);

Loads the list of the installed plugin in the store HashArray.

Example.

Source:

#import( class , HashArray )

CS_ADMIN_SCRIPT this = new CS_ADMIN_SCRIPT($_this);

int Main(CAdminRequest pRequest, CAdminResponse pResponse)
{

HashArray indexkey = new HashArray();
this->GetPlugInInstalled(indexkey);

for (int i = 0; i < indexkey->GetRecordCount(); i++)
{

this->Print(indexkey->GetByIndexS(i) + "\n");

}

delete indexkey;

return 0;

}


Out:

CLAMAV