IndexPage
class IndexPage extends FormPage (View source)
IndexPage class
Properties
protected string | $head | from Page | |
protected string | $title | from Page | |
protected string | $access_permission | from Page | |
protected array | $tabs | from Page | |
protected array | $main_subtitle | from Page | |
protected string | $tabs_picture | from Page | |
protected string | $tabs_title | from Page | |
protected string | $active_tab | from Page | |
protected boolean | $close_form | from Page | |
protected boolean | $close_table | from Page | |
protected boolean | $add_fiche_end | from Page | |
protected string | $rights_class | from Page | |
protected string | $modulepart | from Page | |
protected array | $assets | from Page | |
object | $form | from FormPage | |
protected string | $body | from FormPage | |
protected array | $fields | from FormPage | |
protected int | $stats_id |
Methods
Constructor
Add a subtitle
Opens a new html table
Include a template into the page.
Generate page beginning
Generate page end
Check specified field
Show a confirmation message
Opens a left section
Close a left section
Opens a right section
Close a right section
Add a search form
Add a statistics graph
Add a statistics graph from predefined data
Details
at line 38
__construct($page_title, $access_perm = '')
Constructor
$this
setTitle($page_title)
Set page title.
Note: this function should be called before $page->begin() function, otherwise it will not work as expected.
$this
setMainSubtitle($title, $picture = 'title_generic.png')
Set page main subtitle.
Note: this function should be called before $page->begin() function, otherwise it will not work as expected.
$this
loadLangs($lang_files_array, $from_module = false)
Load an array of language files
$this
appendToHead($content)
Append content to page head.
Note: this function should be called before $page->begin() function, otherwise it will not work as expected.
$this
addJsFile($js_file)
Add JS file to page head.
Note: this function should be called before $page->begin() function, otherwise it will not work as expected.
$this
addJsFiles($js_files_array)
Add an array of JS files.
Note: this function should be called before $page->begin() function, otherwise it will not work as expected.
$this
addCssFile($css_file)
Add CSS file to page head.
Note: this function should be called before $page->begin() function, otherwise it will not work as expected.
$this
addCssFiles($css_files_array)
Add an array of CSS files.
Note: this function should be called before $page->begin() function, otherwise it will not work as expected.
$this
addTab($title, $url, $is_active = false, $position = -1)
Add a tab to the page.
Note: this function should be called before $page->begin() function, otherwise it will not work as expected.
$this
setTabsPicture($picture)
Set tabs picture.
Note: this function should be called before $page->begin() function, otherwise it will not work as expected.
$this
setTabsTitle($title)
Set tabs title.
Note: this function should be called before $page->begin() function, otherwise it will not work as expected.
$this
addSubTitle($title, $picture = 'title_generic.png', $morehtmlright = '')
Add a subtitle
$this
openForm($action = 'create', $enctype = '')
Open a form only if not already opened
$this
openTable($header_columns = array(), $attr = 'class="noborder allwidth"', $print_fiche_head = false, $summary = '')
Opens a new html table
$this
showTemplate($template_path, $path_is_absolute = false, $use_require_once = false, $template_params = array())
Include a template into the page.
Note: the template should be inside module tpl folder when $path_is_absolute parameter equal false.
at line 48
$this
begin()
Generate page beginning
redirect($url)
Redirect to a url (alias for dolibase_redirect function).
Note: this function should be called before any output, so before $page->begin() function.
at line 61
end()
Generate page end
boolean|int
checkField($field_name, $field_trans = '', $field_validation_rules = '', $return_err_number = false)
Check specified field
$this
askForConfirmation($url, $title, $question, $action, $question_param = '', $dialog_id_suffix = '')
Show a confirmation message
at line 73
$this
openLeftSection()
Opens a left section
at line 85
$this
closeLeftSection()
Close a left section
at line 97
$this
openRightSection()
Opens a right section
at line 109
$this
closeRightSection()
Close a right section
at line 125
$this
addSearchForm($fields, $url, $title = 'Search', $summary = '')
Add a search form
at line 163
$this
addStatsGraph($table_name, $field_name, $field_values = array(), $graph_type = 'pie', $graph_title = 'Statistics', $pk_field_name = 'rowid')
Add a statistics graph
at line 255
$this
addStatsGraphFromData($data, $legend = array(), $graph_type = 'pie', $graph_title = 'Statistics')
Add a statistics graph from predefined data