Skip to content

Commit

Permalink
Merge branch 'master' of github.com:joomla-extensions/weblinks
Browse files Browse the repository at this point in the history
  • Loading branch information
zero-24 committed Feb 13, 2017
2 parents 29f652a + 6c67d8a commit 1463cd2
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/administrator/manifests/packages/pkg_weblinks.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
<version>##VERSION##</version>
<license>GNU General Public License version 2 or later; see LICENSE.txt</license>
<description>PKG_WEBLINKS_XML_DESCRIPTION</description>
<scriptfile>script.php</scriptfile>
<files>
<!-- The id for each extension is the element stored in the DB -->
<file type="component" id="com_weblinks">com_weblinks.zip</file>
Expand Down
29 changes: 29 additions & 0 deletions src/administrator/manifests/packages/script.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<?php
/**
* @package Joomla.Administrator
* @subpackage Weblinks
*
* @copyright Copyright (C) 2005 - 2017 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/

defined('_JEXEC') or die;

/**
* Installation class to perform additional changes during install/uninstall/update
*
* @since __DEPLOY_VERSION__
*/
class Pkg_WeblinksInstallerScript extends JInstallerScript
{
/**
* Extension script constructor.
*
* @since __DEPLOY_VERSION__
*/
public function __construct()
{
$this->minimumJoomla = '3.6.3';
$this->minimumPhp = JOOMLA_MINIMUM_PHP;
}
}

0 comments on commit 1463cd2

Please sign in to comment.