cPanel API 1 Functions - News::displaynews

Description

This function displays the contents of server-wide news. It uses the following files as a source (in order):

  • /var/cpanel/news/global-news
  • /var/cpanel/news/global-resold (If the root user does not own the cPanel user's account.)
  • /var/cpanel/news/$owner/news (If neither of the above files exist, the system attempts to display News for the account's owner.)

Warning:

cPanel API 1 is deprecatedDo not use this function. Instead, we strongly recommend that you use the following newer functions:

Examples 


 LiveAPI PHP Class

$cpanel new CPANEL(); // Connect to cPanel - only do this once.
$server_news $cpanel->api1('News','displaynews'); // Call the function.

 LiveAPI Perl Module

my $cpliveapi = Cpanel::LiveAPI->new(); # Connect to cPanel - only do this once.
my $server_news $cpliveapi->api1('News','displaynews'); # Call the function.

 cPanel Tag System (deprecated)

Warning:

In cPanel & WHM version 11.30 and later, cPanel tags are deprecated. This example is present in order to help developers move from the old cPanel tag system to our LiveAPI.

We strongly recommend that you only use the LiveAPI system to call the cPanel APIs.

 

<cpanel Module="News::displaynews()">


 Output (plaintext)

This is the global server news.
This is the reseller news.
This is the news for the account.

 Parameters

This function does not accept parameters.

Returns

This function displays the server news files.

  • 45 Users Found This Useful
Was this answer helpful?

Related Articles

The cPanel Interface

For  cPanel  &  WHM  version  58 Overview The cPanel interface is...

User Preferences

For cPanel & WHM version 58 Overview This document outlines how to access your cPanel...

Manage External Authentications

For cPanel & WHM version 58 Overview Manage credentials Additional documentation...

What is cPanelID?

In This Article:  Overview ServicesHow to get a cPanelID cPanelID External...

Guide to cPanel Interface Customization - cPanel Style Development

Introduction You can develop custom styles that modify the appearance of the cPanel interface....