$serendipity['view'] == 'plugin' - which plugin?

Discussion corner for Developers of Serendipity.
Post Reply
Alexander Heß
Regular
Posts: 7
Joined: Wed Jan 09, 2008 12:22 am
Location: Munich, Germany
Contact:

$serendipity['view'] == 'plugin' - which plugin?

Post by Alexander Heß »

When trying to determine which kind of page we're on, the view index in the $serendipity array is quite helpful. But what if it's a page that's generated by a plugin like serendipity_event_staticpages, serendipity_event_contactform or serendipity_event_freetag?

$serendipity['view'] gives 'plugin' in this case. Is there an easy way to find out which plugin?

I'm currently using these, but they are more like quick and dirty:

serendipity_event_staticpage:

Code: Select all

if (array_key_exists('staticpage_plugin', $serendipity) && count($serendipity['staticpage_plugin']->staticpage) > 0)
serendipity_event_contactform:

Code: Select all

if (substr_count($_SERVER['REQUEST_URI'], $serendipity[preg_replace('/^.+?(serendipity_event_contactform:\S+?\/permalink).+?$/i', '$1', implode(' ', array_keys($serendipity)))]))
serendipity_event_freetag:

Code: Select all

$taglink = parse_url($serendipity[preg_replace('/^.+?(serendipity_event_freetag:\S+?\/taglink).+?$/i', '$1', implode(' ', array_keys($serendipity)))]);
if (substr_count($_SERVER['REQUEST_URI'], $taglink['path']))
garvinhicking
Core Developer
Posts: 30022
Joined: Tue Sep 16, 2003 9:45 pm
Location: Cologne, Germany
Contact:

Re: $serendipity['view'] == 'plugin' - which plugin?

Post by garvinhicking »

Hi!

You can check the $staticpage_pagetitle smarty variable, this is set by plugins. There's no specific variable that a plugin sets which indicates, which plugin took hold of the page.

We would need to modify every event plugin that can take on a page to make that possible, so it's a lot of BC work.

HTH,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
Post Reply