Skip to content

Commit

Permalink
CsvTool: fixCellData
Browse files Browse the repository at this point in the history
  • Loading branch information
tmachyshyn committed Dec 21, 2021
1 parent 13114fe commit 4813f66
Show file tree
Hide file tree
Showing 24 changed files with 2,299 additions and 223 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@
/config.json
/config.php
/extensions/
/.vscode/
795 changes: 674 additions & 121 deletions LICENSE

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ Prepare:
Command to run unit tests:

```
vendor/bin/phpunit tests/unit/Espo/Modules/{@name}
vendor/bin/phpunit tests/unit/Espo/Modules/ImportTools
```

### Integration
Expand All @@ -203,7 +203,7 @@ The file should exist before you run `node build --copy`.
Command to run integration tests:

```
vendor/bin/phpunit tests/integration/Espo/Modules/{@name}
vendor/bin/phpunit tests/integration/Espo/Modules/ImportTools
```

## Configuring IDE
Expand All @@ -212,9 +212,9 @@ You need to set the following paths to be ignored in your IDE:

* `build`
* `site/build`
* `site/application/Espo/Modules/{@name}`
* `site/tests/unit/Espo/Modules/{@name}`
* `site/tests/integration/Espo/Modules/{@name}`
* `site/application/Espo/Modules/ImportTools`
* `site/tests/unit/Espo/Modules/ImportTools`
* `site/tests/integration/Espo/Modules/ImportTools`

## License

Expand Down
4 changes: 2 additions & 2 deletions config-default.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@
"host": "localhost",
"port": "",
"charset": "utf8mb4",
"dbname": "ext-{@nameHyphen}",
"dbname": "ext-import-tools",
"user": "root",
"password": ""
},
"install": {
"language": "en_US",
"defaultOwner": "www-data",
"defaultGroup": "www-data",
"siteUrl": "http://localhost/ext-{@nameHyphen}/site",
"siteUrl": "http://localhost/ext-import-tools/site",
"adminUsername": "admin",
"adminPassword": "1"
}
Expand Down
8 changes: 4 additions & 4 deletions extension.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"module": "{@name}",
"name": "{@nameLabel}",
"description": "{@description}",
"author": "{@author}",
"module": "ImportTools",
"name": "ImportTools",
"description": "Import Tools for EspoCRM.",
"author": "EspoCRM",
"acceptableVersions": [
">=5.9.0"
],
Expand Down
51 changes: 0 additions & 51 deletions init.php

This file was deleted.

Loading

0 comments on commit 4813f66

Please sign in to comment.