@ Chris
sorry, no, the only thing I can think of accomplishing this would to be to create a filter that hooked in to the save/update entry filters to “inject” the required category before the save/update is processed. If this is something you can do … here’s some guidance.
The filters would be:
cn_post_process_add-entry
cn_post_process_update-entry
The filter passes one values, the entry object. you can use this object to get the entry ID which would be required to create a relationship between a category and an entry.
If you have the CSV Import extension, you could refer to the class.entry-import-csv.php file lines 559 thru 609 on how to add the category if it doesn’t exist and create the relationship to the entry. You could use the same method, but just “hard code” your required category.
One thing though, this would stop someone from editing the category on the Connections : Category admin page, it just make sure that category is always assigned.
Hope that helps.
