Skip to content

Instantly share code, notes, and snippets.

@zmiftah
Created March 12, 2015 09:20
Show Gist options
  • Save zmiftah/a978fc8135dfdb5f4c86 to your computer and use it in GitHub Desktop.
Save zmiftah/a978fc8135dfdb5f4c86 to your computer and use it in GitHub Desktop.
Use Heredoc to Save Script and Register it.
$script = <<<EOB
var data = :data;
$('#treeview').treeview({data: %s});
$('#treeview').on('nodeSelected', function(e, node){/* */});
EOB;
$script = sprintf($script, json_encode($treeview));
Yii::app()->clientScript->registerScript('loadTree', $script, CClientScript::POS_READY);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment