I understand that JavaScript is client-side and PHP is server-side, within the code below, is there anyway for me to pop up a new window or make a call to pop open a new window? echo statements don't work. Any thoughts are greatly appreciated.
<?php
class testpop__class
{
function testpop__method(&$bean, $event, $arguments=null)
{
if ($event != 'before_save') return;
// Insert your custom logic between these comments
// Insert your custom logic between these comments
}
}
?>