123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214 |
- <?php
- if (!defined('STATUSNET')) {
- exit(1);
- }
- class OpenXPlugin extends UAPPlugin
- {
- public $adScript = null;
- function initialize()
- {
- parent::initialize();
-
-
- foreach (array('mediumRectangle', 'rectangle', 'leaderboard', 'wideSkyscraper', 'adScript') as $setting) {
- $value = common_config('openx', $setting);
- if (!empty($value)) {
- $this->$setting = $value;
- }
- }
- return true;
- }
-
- protected function showMediumRectangle($action)
- {
- $this->showAd($action, $this->mediumRectangle);
- }
-
- protected function showRectangle($action)
- {
- $this->showAd($action, $this->rectangle);
- }
-
- protected function showWideSkyscraper($action)
- {
- $this->showAd($action, $this->wideSkyscraper);
- }
-
- protected function showLeaderboard($action)
- {
- $this->showAd($action, $this->leaderboard);
- }
-
- protected function showAd($action, $zone)
- {
- $scr = <<<ENDOFSCRIPT
- var m3_u = '%s';
- var m3_r = Math.floor(Math.random()*99999999999);
- if (!document.MAX_used) document.MAX_used = ',';
- document.write ("<scr"+"ipt type='text/javascript' src='"+m3_u);
- document.write ("?zoneid=%d");
- document.write ('&cb=' + m3_r);
- if (document.MAX_used != ',') document.write ("&exclude=" + document.MAX_used);
- document.write (document.charset ? '&charset='+document.charset : (document.characterSet ? '&charset='+document.characterSet : ''));
- document.write ("&loc=" + escape(window.location));
- if (document.referrer) document.write ("&referer=" + escape(document.referrer));
- if (document.context) document.write ("&context=" + escape(document.context));
- if (document.mmm_fo) document.write ("&mmm_fo=1");
- document.write ("'><\/scr"+"ipt>");
- ENDOFSCRIPT;
- $action->inlineScript(sprintf($scr, $this->adScript, $zone));
- return true;
- }
- function onRouterInitialized($m)
- {
- $m->connect('panel/openx',
- array('action' => 'openxadminpanel'));
- return true;
- }
- function onEndAdminPanelNav($menu) {
- if (AdminPanelAction::canAdmin('openx')) {
-
- $menu_title = _m('OpenX configuration.');
-
- $menu->out->menuItem(common_local_url('openxadminpanel'), _m('OpenX'),
- $menu_title, $action_name == 'openxadminpanel', 'nav_openx_admin_panel');
- }
- return true;
- }
-
- function onPluginVersion(array &$versions)
- {
- $versions[] = array('name' => 'OpenX',
- 'version' => GNUSOCIAL_VERSION,
- 'author' => 'Evan Prodromou',
- 'homepage' => 'http://status.net/wiki/Plugin:OpenX',
- 'rawdescription' =>
-
- _m('Plugin for <a href="http://www.openx.org/">OpenX Ad Server</a>.'));
- return true;
- }
- }
|