/theme_name
/plugin_name
Thanks,/plugin_theme_stuff/plugin_theme_stuff
Yes, the current trunk for Exhibit Builder should pull from the public
themes. You'll also need to run this on trunk of Omeka, too. I just
tested this, and its working as expected. Can you confirm which
versions you're running? And can you tell us where in the code
ExhibitBuilder still seems to pull from the exhibit_themes directory?
We haven't removed the exhibit_themes directory from the trunk yet,
but I'll do that soon.
And to confirm the directory structure, it should be, for
ExhibitBuilder:
/themes
/theme-name
/exhibit-builder
/exhibits
browse.php
item.php
show.php
summary.php
tags.php
More generically, it would be:
/themes
/theme-name
/plugin-name
/plugin-view-for-controller
Best,
Jeremy
> --
> You received this message because you are subscribed to the Google
> Groups "Omeka Dev" group.
> To post to this group, send email to omek...@googlegroups.com.
> To unsubscribe from this group, send email to omeka-dev+...@googlegroups.com
> .
> For more options, visit this group at http://groups.google.com/group/omeka-dev?hl=en
> .
>
define('EXHIBIT_PLUGIN_DIR', dirname(__FILE__));define('EXHIBIT_THEMES_DIR_NAME', 'exhibit_themes');define('EXHIBIT_THEMES_DIR', EXHIBIT_PLUGIN_DIR . DIRECTORY_SEPARATOR . 'views' . DIRECTORY_SEPARATOR . 'shared' . DIRECTORY_SEPARATOR . EXHIBIT_THEMES_DIR_NAME);
function exhibit_builder_exhibit_head()
{
$exhibit = exhibit_builder_get_current_exhibit();
if ($exhibit->theme) {
common('header',compact('exhibit'), EXHIBIT_THEMES_DIR_NAME.DIRECTORY_SEPARATOR.$exhibit->theme);
} else {
head(compact('exhibit'));
}
}