Guest User

Mark

a guest
Apr 2nd, 2013
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.55 KB | None | 0 0
  1. public function initToolbar()
  2. {
  3.     parent::initToolbar();
  4.     ...
  5.     if ($this->tabAccess['edit'])
  6.     {
  7.         ...
  8.         $this->toolbar_btn['google'] = array(
  9.             'short' => 'Google',
  10.             'href' => "javascript:window.open('https://www.google.com/search?q=".$product->name[1]."')",
  11.             'desc' => $this->l('Google it'),
  12.         );
  13.         $this->toolbar_btn['google-pix'] = array(
  14.             'short' => 'GPix',
  15.             'href' => "javascript:window.open('https://www.google.com/search?q=".$product->name[1]."&tbm=isch&tbo=u&source=univ&sa=X')",
  16.             'desc' => $this->l('Google pix it'),
  17.         );
  18.         ...
Advertisement
Add Comment
Please, Sign In to add comment