Skip to content

Commit

Permalink
First commit
Browse files Browse the repository at this point in the history
  • Loading branch information
benitolopez committed Jun 13, 2017
0 parents commit f51068d
Show file tree
Hide file tree
Showing 314 changed files with 48,778 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .editorconfig
@@ -0,0 +1,20 @@
# This file is for unifying the coding style for different editors and IDEs
# editorconfig.org

root = true

[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
indent_style = tab
indent_size = 4
tab_width = 4

[*.json,*.txt]
indent_style = space
indent_size = 2

[*.txt,wp-config-sample.php]
end_of_line = crlf
183 changes: 183 additions & 0 deletions .gitignore
@@ -0,0 +1,183 @@
# Created by https://www.gitignore.io/api/vim,macos,windows,linux,node,sass,sublimetext,vim,git

### Vim ###
# swap
[._]*.s[a-v][a-z]
[._]*.sw[a-p]
[._]s[a-v][a-z]
[._]sw[a-p]
# session
Session.vim
# temporary
.netrwhist
*~
# auto-generated tag files
tags


### macOS ###
*.DS_Store
.AppleDouble
.LSOverride

# Icon must end with two \r
Icon
# Thumbnails
._*
# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent
# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk


### Windows ###
# Windows thumbnail cache files
Thumbs.db
ehthumbs.db
ehthumbs_vista.db

# Folder config file
Desktop.ini

# Recycle Bin used on file shares
$RECYCLE.BIN/

# Windows Installer files
*.cab
*.msi
*.msm
*.msp

# Windows shortcuts
*.lnk


### Linux ###

# temporary files which can be created if a process still has a handle open of a deleted file
.fuse_hidden*

# KDE directory preferences
.directory

# Linux trash folder which might appear on any partition or disk
.Trash-*

# .nfs files are created when an open file is removed but is still being accessed
.nfs*


### Node ###
# Logs
logs
*.log
npm-debug.log*

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# node-waf configuration
.lock-wscript

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules
jspm_packages

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity



### Sass ###
.sass-cache/
*.css.map


### SublimeText ###
# cache files for sublime text
*.tmlanguage.cache
*.tmPreferences.cache
*.stTheme.cache

# workspace files are user-specific
*.sublime-workspace

# project files should be checked into the repository, unless a significant
# proportion of contributors will probably not be using SublimeText
# *.sublime-project

# sftp configuration file
sftp-config.json

# Package control specific files
Package Control.last-run
Package Control.ca-list
Package Control.ca-bundle
Package Control.system-ca-bundle
Package Control.cache/
Package Control.ca-certs/
Package Control.merged-ca-bundle
Package Control.user-ca-bundle
oscrypto-ca-bundle.crt
bh_unicode_properties.cache

# Sublime-github package stores a github token in this file
# https://packagecontrol.io/packages/sublime-github
GitHub.sublime-settings


### Vim ###
# swap
# session
# temporary
# auto-generated tag files


### Git ###
*.orig

# End of https://www.gitignore.io/api/vim,macos,windows,linux,node,sass,sublimetext,vim,git

dist
.tmp
.npmrc
23 changes: 23 additions & 0 deletions README.md
@@ -0,0 +1,23 @@
# WP Hotelier
[![npm](https://img.shields.io/npm/v/npm.svg)]()
[![XO code style](https://img.shields.io/badge/code_style-XO-5ed9c7.svg)](https://github.com/sindresorhus/xo)

Welcome to the [WP Hotelier](https://wphotelier.com) GitHub repository. The documentation for the [WP Hotelier plugin](https://wphotelier.com) can be found on [WPHotelier.com](https://wphotelier.com), here you can browse the source of the project, find and discuss open issues.

## Installation ##

For detailed setup instructions, visit the official [WP Hotelier Documentation](http://docs.wphotelier.com) website.

1. Clone the GitHub repository: `https://github.com/hotelier/hotelier.git`
2. Or download it directly as a ZIP file: `https://github.com/hotelier/hotelier/archive/master.zip`

Like any other WordPress plugin, place it in `/wp-content/plugins/`.

## Scope of this repository ##

This repository is not suitable for support. But for issues related to WP Hotelier (core plugin only). Please don't submit support requests, use the official support channels for that:

* The [WP Hotelier support portal](https://wphotelier.com/support/) for customers who have purchased extensions or themes.
* [Support forum on wp.org](https://wordpress.org/support/plugin/wphotelier) if you don't have a valid license key.

Support requests or issues related to extensions or themes will be closed immediately.

0 comments on commit f51068d

Please sign in to comment.