Created
August 10, 2018 01:00
-
-
Save Blair2004/45d75eb227f183970fcc9684f059a815 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
defined('BASEPATH') OR exit('No direct script access allowed'); | |
$this->Gui->col_width(1, 4); | |
$this->Gui->add_meta( array( | |
'col_id' => 1, | |
'namespace' => 'helloworld', | |
'type' => 'unwrapped' | |
) ); | |
$this->Gui->add_item( array( | |
'type' => 'dom', | |
'content' => '<h1>Hello World</h1> | |
), 'helloworld', 1 ); | |
$this->Gui->output(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment