Google I/O 2009 - Big Modular Java with Guice
//$text_flash_load_failed = <<
// [ Movie Load Failed! ]
// [ Please check ]
// [ 1. Flash Player is installed and enabled ]
// [ 2. The video you requested is still existed. ]
// [ or you may visit the video directly ]
//
//EOT;
$text_flash_load_failed = 'Loading...';
$this->widget('application.extensions.flash.EJqueryFlash',
array(
'name' => 'flash_player',
'text' => $text_flash_load_failed,
'pluginOptions'=>array(
'expressInstall' => true,
'upate' => true,
),
'htmlOptions'=>array(
'src' => $movie_flash,
'width' => '100%',
'height'=> '100%',
'allowFullScreen'=> 'true',
),
)
);
?>
Google I/O 2009 - Big Modular Java with Guice
you have some file called "constants" that everything else has to depend on. So this is a nice balance. All right, you talk about scopes. Dhanji: Okay, so scopes are very interesting. They're really hard for me to define in one, simple way. So I'll use the simplest explanation that I could think of. For me, scopes are about duration, right? You can talk about scopes as a context, for instance, an HTP request is a scope in Guice. Or an HTTP session, which is a series of requests that come in ...