Function __global->edit_newsletter
Definitions
sources/newsletter2.php
- Edit a newsletter.
- Visibility: public
- Is abstract?: No
- Is static?: No
- Is final?: No
Parameters
| Name | Type | Passed by reference? | Variadic? | Default | Set | Range | Description |
|---|---|---|---|---|---|---|---|
| $id | AUTO_LINK | No | No | required parameter | N/A | N/A | The ID |
| $title | SHORT_TEXT | No | No | required parameter | N/A | N/A | The title |
| $description | LONG_TEXT | No | No | required parameter | N/A | N/A | The description |
Preview
Code (PHP)
/**
* Edit a newsletter.
*
* @param AUTO_LINK $id The ID
* @param SHORT_TEXT $title The title
* @param LONG_TEXT $description The description
*/
function edit_newsletter(int $id, string $title, string $description)
* Edit a newsletter.
*
* @param AUTO_LINK $id The ID
* @param SHORT_TEXT $title The title
* @param LONG_TEXT $description The description
*/
function edit_newsletter(int $id, string $title, string $description)

