Skip to content
This repository was archived by the owner on Nov 27, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ All notable changes to this project will be documented in this file.

## [Unreleased]


- NEW : COMPATV19 - *01/12/2023* - 1.2.0

## Version 1.1

Expand Down
76 changes: 0 additions & 76 deletions admin/scrollto_about.php

This file was deleted.

126 changes: 0 additions & 126 deletions admin/scrollto_setup.php

This file was deleted.

88 changes: 0 additions & 88 deletions class/actions_scrollto.class.php

This file was deleted.

6 changes: 3 additions & 3 deletions core/modules/modScrollTo.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ function __construct($db)
// Module description, used if translation string 'ModuleXXXDesc' not found (where XXX is value of numeric property 'numero' of module)
$this->description = "Description of module ScrollTo";
// Possible values for version are: 'development', 'experimental', 'dolibarr' or version
$this->version = '1.1.0';
$this->version = '1.2.0';
// Key used in llx_const table to save module status enabled/disabled (where MYMODULE is value of property name of module in uppercase)
$this->const_name = 'MAIN_MODULE_'.strtoupper($this->name);
// Where to store the module in setup page (0=common,1=interface,2=others,3=very specific)
Expand Down Expand Up @@ -103,8 +103,8 @@ function __construct($db)
$this->depends = array(); // List of modules id that must be enabled if this module is enabled
$this->requiredby = array(); // List of modules id to disable if this one is disabled
$this->conflictwith = array(); // List of modules id this module is in conflict with
$this->phpmin = array(5,0); // Minimum version of PHP required by module
$this->need_dolibarr_version = array(3,0); // Minimum version of Dolibarr required by module
$this->phpmin = array(7,0); // Minimum version of PHP required by module
$this->need_dolibarr_version = array(10,0); // Minimum version of Dolibarr required by module
$this->langfiles = array("scrollto@scrollto");

// Constants
Expand Down