elgg添加网页方法

php系统添加hello world网页:

1.安装elgg。

2.创建文件start.php(路径为服务器根目录),内容为:

php

elgg_register_event_handler('init', 'system', 'hello_world_init');

function hello_world_init() {

}
这段代码是告诉elgg,它应该在系统初始化时,调用 hello_world_init方法。

3.注册网页处理器:这步的任务是实现在用户请求网址https://elgg.example.com/hello时,处理相关业务。

更新start.php为:

php

elgg_register_event_handler('init', 'system', 'hello_world_init');

function hello_world_init() {
    elgg_register_page_handler('hello', 'hello_world_page_handler');
}

function hello_world_page_handler() {
    echo elgg_view_resource('hello');
}
注:当用户访问 https://elgg.example.com/hello/*时, elgg_register_page_handler()告诉elgg调用方法 hello_world_page_handler(),该方法渲染view视图为 resources/hello

4.创建php网页,路径为views/default/resources/hello.php,内容为:

php

$params = array(
    'title' => 'Hello world!',
    'content' => 'My first page!',
    'filter' => '',
);

$body = elgg_view_layout('content', $params);

echo elgg_view_page('Hello', $body);
该页向 elgg_view_layout()方法传递titile,content,filter等网站页面的基本信息参数。

elgg_view_page()作为显示页面,检测所有控制信息,并完整展现整个网页。

5.此时,即实现了新建网页功能。

你可能感兴趣的:(elgg)