- Seme Framework
- versi 4.0.3 (ID)
- Persyaratan
- Download & Install
- Pengaturan
- Tutorial
- Perutean URI
- Konstanta
- Variabel Global
- Model
- View
- Controller
- Library
- CLI (command line interface)
- Core
Metode getJsContent
Metode getJsContent
digunakan untuk menampilkan output (echo) isi javascript yang telah disimpan oleh metode putJsContent .
Bentuk Umum
Berikut ini adalah bentuk umum metode getJsContent
dari kelas SENE_Controller .
$this->getJsContent(): string
Parameter
Metode ini tidak memiliki parameter.
Contoh
Biasanya metode ini hanya dipanggil didalam file layout atau didalam view component.
Berikut ini adalah contoh penggunaanya pada file layout col-1.php
.
<!DOCTYPE html>
<html>
<head>
<title>Test</title>
</head>
<body>
...
<script>
...
<?php $this->getJsContent(); ?>
</script>
</body>
</html>