On cache clear, ctools_theme() calls _ctools_passthrough(), which calls about 14 other functions, one of which is ctools_stylizer_theme(). Since I don't have stylizer.module enabled, I get the error Invalid plugin module/type combination requested: module stylizer and type style_bases.

My guess is that _ctools_passthrough() needs to be more judicious in its includes/function calls, but I don't really know.

Comments

Azol’s picture

subscribe

jibberish’s picture

subscribe

jlyon’s picture

subscribe

klonos’s picture

been getting the same error - subscribing

pieterdc’s picture

also getting this error - subscribing

but I think it disappeared once I got rid of orphaned actions (because I disabled the comment module)

do you guys have orphaned actions?

I see them listed when clearing cache using drush

vood002’s picture

I'm getting the same error...subscribing

hadsie’s picture

Same thing here, and I don't have any orphaned actions so I don't think that's related.

tsvenson’s picture

Same hear. Only got the Chaos Tools Suite module enabled and updating and clear cache give me the "Invalid plugin module/type combination requested: module stylizer and type style_bases" error log message as well.

merlinofchaos’s picture

Right. The basic problem is that includes/stylizer.theme.inc doesn't actually belong there. FOr now the workaround is to enable stylizer, or rm stylizer.theme.inc -- for the real solution I'll have to move the code around. Probably 'stylizer' doesn't belong in ctools includes anymore, but I'm not completely sure about that yet.

sharikov’s picture

subscribe

bblake’s picture

StatusFileSize
new553 bytes

I realize this isn't the final solution, but if you need to get the error message removed, this patch should take care of it.

dave reid’s picture

Status: Active » Reviewed & tested by the community
+++ includes/utility.inc	2010-12-07 14:23:11.000000000 -0500
@@ -21,6 +21,9 @@
+    if($file->name == 'stylizer.theme' && !module_exists('stylizer')) {

Missing a space here, but this is a good patch for a grating message until a better fix can be committed.

Powered by Dreditor.

geerlingguy’s picture

Subscribe - same problem.

scor’s picture

StatusFileSize
new836 bytes

reuploading patch with minor space fix. I second Dave's RTBC.

scor’s picture

StatusFileSize
new834 bytes
kehan’s picture

subscribing

realityloop’s picture

Confirming this still fixes the error when using ctools 7.x-1.x-dev from 2011-Jan-04 and Drupal 7RC4

spacereactor’s picture

Test with newly release of drupal 7. THREE CHEERS!!! :) and is working, can this be roll in to the next version of ctools.

merlinofchaos’s picture

Status: Reviewed & tested by the community » Fixed

I'm a little unhappy that such an obvious hack was gleefully RTBC'd, though I do understand having the patch so people could get past the errors. Anyway, I moved the problem code to stylizer.module where it belongs, though stylizer.theme.inc had to remain.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.