- 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 getJsFooter
Metode getJsFooter
digunakan untuk mengambil list tag script
yang diperoleh dari theme.json untuk ditampilkan dalam layout.
Bentuk Umum
Berikut ini adalah bentuk umum metode getJsFooter
dari kelas SENE_Controller .
$this->getJsFooter(): 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>
...
...
<!-- jQuery, Bootstrap.js, jQuery plugins and Custom JS code from script.json -->
<?php $this->getJsFooter(); ?>
...
<script>
...
</script>
</body>
</html>