Skip to content

Commit

Permalink
hello_world module updated to use __construct()
Browse files Browse the repository at this point in the history
  • Loading branch information
apmuthu committed Nov 11, 2017
1 parent b5390cc commit 3454b90
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG_FA24ext.txt
@@ -1,3 +1,4 @@
2017-11-11 Ap.Muthu hello_world module updated to use __construct().
2017-11-10 Ap.Muthu Arabic, Hindi and Tamil core language translation files updated to FA 2.4.3 fully
2017-11-10 Ap.Muthu Arabic (ar_EG) core language strings fully translated
2017-11-09 Ap.Muthu auth_ldap module activation check for ldap_connect() presence: upstream synch
Expand Down
2 changes: 1 addition & 1 deletion Extensions/hello_world/_init/files
@@ -1,4 +1,4 @@
/helloworld.php: ea083d0e4434cfef51a28332657c26ffe521615e
/helloworld.php: 1cbc504bf80c45bd2221e4e5813213a93e846389
/hello_world.php: 99c90deaa13d89a420a423f5aaa1b08882ce48f4
/hooks.php: 38226c3325278625786a0ff47a741e612b4a245a
/index.php: 435866102943ef00e38d96927cb5ee20bff20688
Expand Down
4 changes: 2 additions & 2 deletions Extensions/hello_world/helloworld.php
Expand Up @@ -9,9 +9,9 @@
class helloworld_app extends application
{

function helloworld_app()
function __construct()
{
$this->application("hello", _($this->help_context = "&Hello World"));
parent::__construct("hello", _($this->help_context = "&Hello World"));

$this->add_module(_("Transactions"));

Expand Down

0 comments on commit 3454b90

Please sign in to comment.