? 651306.panels-node.edit-any-perm.patch ? 683162-convert-plugins.patch ? 787644-panels-stylizer-export-ui.patch ? css-cache-clear.patch ? node_content_fix_render.patch ? panels-612116.patch ? panels-618624-3.patch ? panels.module_4.patch ? panels_pane_esi_cache.patch ? plugins/layouts/flexible960 Index: panels_stylizer/panels_stylizer.install =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/panels/panels_stylizer/Attic/panels_stylizer.install,v retrieving revision 1.1.2.1 diff -u -p -r1.1.2.1 panels_stylizer.install --- panels_stylizer/panels_stylizer.install 17 Feb 2010 01:09:46 -0000 1.1.2.1 +++ panels_stylizer/panels_stylizer.install 10 Jun 2010 00:21:01 -0000 @@ -18,6 +18,7 @@ function panels_stylizer_schema_1() { 'export callback' => 'panels_stylizer_style_export', 'can disable' => TRUE, 'identifier' => 'style', + 'primary key' => 'sid', ), 'fields' => array( 'sid' => array( Index: panels_stylizer/panels_stylizer.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/panels/panels_stylizer/Attic/panels_stylizer.module,v retrieving revision 1.1.2.2 diff -u -p -r1.1.2.2 panels_stylizer.module --- panels_stylizer/panels_stylizer.module 20 May 2010 01:49:14 -0000 1.1.2.2 +++ panels_stylizer/panels_stylizer.module 10 Jun 2010 00:21:02 -0000 @@ -177,7 +177,7 @@ function panels_stylizer_ctools_plugin_d if (!module_invoke('ctools', 'api_version', PANELS_REQUIRED_CTOOLS_API)) { return; } - if ($module == 'ctools' && $plugin == 'style_bases' || $module == 'panels' && $plugin == 'styles') { + if ($module == 'ctools' || $module == 'panels') { return 'plugins/' . $plugin; } } Index: panels_stylizer/plugins/export_ui/panels_stylizer.inc =================================================================== RCS file: panels_stylizer/plugins/export_ui/panels_stylizer.inc diff -N panels_stylizer/plugins/export_ui/panels_stylizer.inc --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ panels_stylizer/plugins/export_ui/panels_stylizer.inc 10 Jun 2010 00:21:02 -0000 @@ -0,0 +1,21 @@ + 'panels_style', + 'access' => 'administer panels styles', + 'menu' => array( + 'menu item' => 'stylizer', + ), + 'title' => t('Style'), + 'form' => array( + 'settings' => 'panels_stylizer_ctools_export_ui_form', + ), + 'handler' => array( + 'class' => 'ctools_export_ui', + ), +); + +function panels_stylizer_ctools_export_ui_form(&$form, $plugin_name, $op, $export) { + $form['markup'] = array('#value' => t('This is the form')); +}