> For the complete documentation index, see [llms.txt](https://xoops.gitbook.io/moduleadmin-tutorial/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://xoops.gitbook.io/moduleadmin-tutorial/the-page-about.php.md).

# The page "about.php"

The page "About us" is composed from 4 parties:

1. A summary of the module information (automatically generated from xoops\_version-php) as a info box.&#x20;
2. Custom infos box if desired.&#x20;
3. A info box with information about the module (automatically generated from xoops\_version.php).&#x20;
4. The module's changelog.&#x20;

To create the page "About us", we use renderabout():

```php
$variable_name->renderabout($paypal, $icon);
```

* `$paypal`: Your payal ID,if you want a "donate" button so users can make donations.&#x20;
* `$icon`: Values 'True' if you want to put xoops image in the footer and 'False'if you do not want.&#x20;

The changelog will be automatically loaded, but you must put in:

```
modulename 
    L docs 
        L changelog.txt 
```

Or in:

```
modulename 
    L language 
        L Local_Language (e.g. French) 
            L changelog.txt 
```

The changelog will be automatically loaded into the language of the website. If not, it will be loaded from the folder "docs".

You can also add as many InfoBoxes as you want in this section

**Example:**&#x20;

```php
$variable_name = new ModuleAdmin(); 
$variable_name->addInfoBox("Title"); 
$variable_name->addInfoBoxLine("Title", 'Text %s ...', 'value', 'red', 'default'); 
echo $variable_name->addNavigation('about.php'); 
echo $variable_name->renderabout('9MYQB7GUK5MCS', true);
```

**The result:**

![](/files/-LD6N0PPxvAxgOpJm6U1)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://xoops.gitbook.io/moduleadmin-tutorial/the-page-about.php.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
