$wv->conf; //Array - All the configuration values of framework
$wv->all_languages; //Object - All enabled framework languages
$wv->def_lang; //Var - Default framework language
$wv->current_url; //Var - Filtered current FQDM with page and query
$wv->date; //Var - Current date and time when loading the page.
<b>It doesn't change during execution, if you need to use it in a loop you have to
call the $wv->date() method because otherwise the date and time are always the same.</b>
$wv->dts; //Var - Disk total space
$wv->files; //Object - current virtual page info
$wv->form_auto; //Var - Login form auto field
$wv->form_password; //Var - Login password auto field
$wv->form_username; //Var - Login username auto field
$wv->fqdn; //Var - Filtered SERVER_NAME without www
$wv->_fqdn; //Var - Filtered SERVER_NAME with www
$wv->home; //Object - Website home page id and alias
$wv->hostname; //Server hostname
$wv->ip; //Var - Remote user IP
$wv->lh_err; //Var - Last Login Hash error
$wv->lh_msg; //Var - Last Login Hash login message
$wv->lang; //Var - Selected language ISO code
$wv->login_error; //Var - Last login error
$wv->login_hash; //Var - Login hash value used to login without credentials
$wv->login_result; //Object - current login result info
$wv->lsip; //Var - Server IP in long format
$wv->page_alias; //Var - Filtered current page alias name of URI
$wv->page_info; //Object - current page file info
$wv->PHPSESSID; //PHP session ID
$wv->redir_to_page; //Var - Name alias of page to redir after login
$wv->skeleton_dir; //Var - Framework local skeleton directory name
$wv->server_ip; //Server's IP
$wv->ssl; //Bool - true if SSL activated
$wv->susr; //Var - current website system user name
$wv->ua; //Var - Filtered browser user_agent
$wv->uniq_id; //Var - Uniq ID
$wv->uri; //Var - Filtered REQUEST_URI
$wv->user_agent; //Var - ua alias
$wv->user_error; //Var - Last user error
$wv->user_group; //Var - User session group ID
$wv->user_group_name; //Var - User session group name
$wv->user_id; //Var - User session ID
$wv->user_name; //Var - User session username
$wv->user_signed; //Var - User session signed
$wv->version; //Var - Framework verbose version text
$wv->webp; //Bool - True if browser supports webp image format
$wv->website_id; //Var - Current WEBsite ID
$wv->WVSESSID; //WV session ID
More info about pageInfo objet
Object files:
- id: ID of the current page.
- stat: Status of the current page (0=Enabled, 1=Disabled).
- accres: Restricted access (0=Free, Other number = Equal or greater than the allowed user group).
- owner: ID of the page owner.
- priority: Value from 1 to 10 to indicate the priority of the page to generate sitemap.xml (0.1 to 1).
- ws: “WebSite”, generates the skeleton files (template), assigned to the current page.
- ex: Exclusive Use, has value 1 if the page can only be loaded in your WebSite.
- nh: “No Headers”, generates the page without skeleton (template) and without sending any header or output.
- https: 0=No change, 1=Strength https, 2=strength http.
- pce: 1=Page conditionals exist.
- alias: Name of the alias (the page that is loaded without the domain name and query).
- dir: ID of the directory that stores the file that generates the current page.
- trail: ID of the previous level page to the current one.
- grp: ID of the group of pages to which the current page belongs.
- file: Name of the file that generates the current page.
Example of files object:
(
[id] => 101
[stat] => 0
[accres] => 0
[owner] => 1
[priority] => 5
[ws] => 1
[ex] => 0
[nh] => 0
[https] => 0
[pce] => 0
[alias] => doc
[dir] => 7
[trail] => 0
[grp] => 4
[file] => doc.php
)
all_languages object:
Object contains a list of all active languages for the current website.
- iso: ISO 639-1 code of the language
- name: Name of the language in the language itself (including capitalization).
For example, if Spanish and English are active, this would be the content:
(
[0] => stdClass Object
(
[iso] => en
[name] => English
)
[1] => stdClass Object
(
[iso] => es
[name] => español
)
)