0ed9db26 by vanisha

css changes

1 parent 0742377e
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
3 3
4 <div class="container"> 4 <div class="container">
5 <div class="cardtitle"> 5 <div class="cardtitle">
6 <p class="banner-title mb-0 pb-0 bold">Cron logs view</p> 6 <p class="banner-title mb-0 pb-0 bold" style="font-size: 30px;">Cron logs view</p>
7 <p class="dasboard_margin">It shows all cron entries that should be ran today. We can fliter the cron details based on the date filter</p> 7 <p class="dasboard_margin">It shows all cron entries that should be ran today. We can fliter the cron details based on the date filter</p>
8 </div> 8 </div>
9 </div> 9 </div>
...@@ -38,6 +38,7 @@ ...@@ -38,6 +38,7 @@
38 38
39 <script> 39 <script>
40 $('#view_logs_entries_table').dataTable({ 40 $('#view_logs_entries_table').dataTable({
41 dom: 'Bfrtip',
41 "pageLength": 30, 42 "pageLength": 30,
42 "lengthChange": false, 43 "lengthChange": false,
43 lengthMenu: [[30, 50, 100], [30, 50, 100]] 44 lengthMenu: [[30, 50, 100], [30, 50, 100]]
......
...@@ -22,13 +22,13 @@ ...@@ -22,13 +22,13 @@
22 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later 22 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
23 */ 23 */
24 24
25 require_once('../../../config.php'); 25 global $PAGE,$OUTPUT,$CFG;
26 26
27 require_login(null, false); 27 require_once(dirname(dirname(dirname(__FILE__))) . '/config.php');
28 28
29 global $PAGE,$OUTPUT,$CFG; 29 require_login(null, false);
30 30
31 $pluginname = get_string('pluginname', 'block_fn_mentor'); 31 $pluginname = get_string('pluginname', 'block_log');
32 32
33 $thispageurl = new moodle_url('/blocks/log/view.php'); 33 $thispageurl = new moodle_url('/blocks/log/view.php');
34 $PAGE->set_url($thispageurl); 34 $PAGE->set_url($thispageurl);
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!