Hi @razvan_iacob,
These are defined here:
/opt/kaltura/app/alpha/apps/kaltura/config/partnerPackages.xml
And used here:
/opt/kaltura/app/alpha/apps/kaltura/lib/model/PartnerPackages.class.php
Where there also constants corresponding to the numbers in the XML, so for example:
<id>1</id>
<name>Kaltura Free</name>
Corresponds to:
const PARTNER_PACKAGE_FREE = 1;
These are then looked at in several places in the Admin Console code, for example in:
/opt/kaltura/app/admin_console/controllers/PartnerController.php
/opt/kaltura/app/admin_console/forms/PartnerConfiguration.php
As well as in pieces of the KMC code, and in /opt/kaltura/app/alpha/apps/kaltura/lib/myPartnerUtils.class.php
I suppose the easiest way to track down all the relevant places is to check where the constants are used with:
# grep PARTNER_PACKAGE_FREE /opt/kaltura/app/* -r
Hope that helps,