Function __global->add_newsletter
Definitions
sources/newsletter2.php
- Make a newsletter.
- Visibility: public
- Is abstract?: No
- Is static?: No
- Is final?: No
- Returns: int
Parameters
Name | Type | Passed by reference? | Variadic? | Default | Set | Range | Description |
---|---|---|---|---|---|---|---|
$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 |
Returns
- The ID
- Type: AUTO_LINK
- Set: N/A
- Range: N/A
Preview
Code (PHP)
/**
* Make a newsletter.
*
* @param SHORT_TEXT $title The title
* @param LONG_TEXT $description The description
* @return AUTO_LINK The ID
*/
function add_newsletter(string $title, string $description) : int
* Make a newsletter.
*
* @param SHORT_TEXT $title The title
* @param LONG_TEXT $description The description
* @return AUTO_LINK The ID
*/
function add_newsletter(string $title, string $description) : int