syntax error in the example
PermalinkLoader::model('collection_types'); if(!is_object(CollectionType::getByHandle('home')) { $data['ctHandle'] = 'home'; $data['ctName'] = t('Home'); $hpt = CollectionType::add($data, $pkg); }
should be;
Loader::model('collection_types'); if(!is_object(CollectionType::getByHandle('home'))) { $data['ctHandle'] = 'home'; $data['ctName'] = t('Home'); $hpt = CollectionType::add($data, $pkg); }