Skip to content

Commit

Permalink
initial work on craft 3 port
Browse files Browse the repository at this point in the history
  • Loading branch information
MakeilaLundy committed Jun 30, 2017
1 parent 9b7b682 commit daa1952
Show file tree
Hide file tree
Showing 11 changed files with 239 additions and 816 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
Changelog
=========

### Updated
### 1.1 - 2015-12-20
- Updated to take advantage of new Craft 2.5 plugin features.

### 1.0 - 2014-07-24

* Initial release.
4 changes: 2 additions & 2 deletions LICENSE → LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2016 Pixel & Tonic, Inc.
Copyright (c) Pixel & Tonic, Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand All @@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
SOFTWARE.
26 changes: 13 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
# Simple Text plugin for Craft
Store Hours for Craft CMS
===================

This plugin adds a new “Simple Text” field type to Craft, which provides a textarea that’s optimized for entering documentation.

## Textarea Features
## Requirements

This plugin requires Craft CMS 3.0.0-beta.1 or later.

* Uses a fixed-width font
* Automatically resizes
* Uses [Behave.js](http://jakiestfu.github.io/Behave.js/)

## Installation

To install Simple Text, follow these steps:
To install the plugin, follow these instructions.

1. Open your terminal and go to your Craft project:

1. Upload the simpletext/ folder to your craft/plugins/ folder.
2. Go to Settings > Plugins from your Craft control panel and enable the SimpleText plugin.
cd /path/to/project

2. Then tell Composer to load the plugin:

## Changelog
composer require craftcms/store-hours

### 1.1
3. In the Control Panel, go to Settings → Plugins and click the “Install” button for Store Hours.

* Updated to take advantage of new Craft 2.5 plugin features.
4. You can now create a Store Hours field type under Settings → Fields.

### 1.0

* Initial release.
49 changes: 49 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
{
"name": "craftcms/simple-text",
"description": "This plugin adds a new “Simple Text” field type to Craft, which provides a textarea that’s optimized for entering documentation.",
"version": "2.0.0",
"type": "craft-plugin",
"keywords": [
"html",
"cms",
"craftcms",
"json",
"yii2"
],
"license": "MIT",
"authors": [
{
"name": "Pixel & Tonic",
"homepage": "https://pixelandtonic.com/"
}
],
"support": {
"email": "support@craftcms.com",
"issues": "https://github.com/craftcms/simple-text/issues?state=open",
"source": "https://github.com/craftcms/simple-text",
"docs": "https://github.com/craftcms/simple-text",
"rss": "https://github.com/craftcms/simple-text/commits/v2.atom"
},
"require": {
"craftcms/cms": "~3.0.0-beta.1",
"bower-asset/behave.js": "1.7.1"
},
"autoload": {
"psr-4": {
"craft\\simpletext\\": "src/"
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"extra": {
"name": "Simple Text",
"handle": "simpletext",
"schemaVersion": "1.0.2",
"changelogUrl": "https://raw.githubusercontent.com/craftcms/simple-text/v2/CHANGELOG.md",
"downloadUrl": "https://github.com/craftcms/simple-text/archive/v2.zip"
}
}
10 changes: 0 additions & 10 deletions releases.json

This file was deleted.

72 changes: 0 additions & 72 deletions simpletext/SimpleTextPlugin.php

This file was deleted.

86 changes: 0 additions & 86 deletions simpletext/fieldtypes/SimpleTextFieldType.php

This file was deleted.

Loading

0 comments on commit daa1952

Please sign in to comment.