Save all currently accumulated repository changes as a backup snapshot for Gitea so no local work is lost.
11 lines
326 B
PHP
11 lines
326 B
PHP
<?php
|
|
/**
|
|
* One-off: regenerate parent_tabdata.php so menu includes OnlyOfficeTemplates (tabid 98).
|
|
* Run from CRM root: php regenerate_parent_tabdata.php
|
|
*/
|
|
chdir(__DIR__);
|
|
require_once 'config.inc.php';
|
|
require_once 'include/utils/CommonUtils.php';
|
|
create_parenttab_data_file();
|
|
echo "parent_tabdata.php regenerated.\n";
|