Skip to content

ranvirp/yii2-articles

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

87 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Yii2 Articles

Yii2 Articles to create, manage, and delete articles in a Yii2 site.

FEATURES

  • Create, edit and delete articles
  • Article with attachments, image, gallery, hits
  • Manage categories and subcategories
  • Advanced Access Permission
  • Approval
  • Multi-Language with I18N
  • Extra Field Management
  • SEO Optimization

CHANGELOG

  • Version 0.2.5 - Update Asset Depends
  • Version 0.2.4 - Update Italian Translations
  • Version 0.2.3 - Update Asset setting articles.css after bootstrap
  • Version 0.2.2 - Update Item View
  • Version 0.2.1 - Adding video_type field in Items and fixed modified
  • Version 0.2.0 - Adding Upload Image in Items
  • Version 0.1.14 - Cleaning Categories Code
  • Version 0.1.13 - Generalizing Upload File Field
  • Version 0.1.12 - Adding Migrations Example
  • Version 0.1.11 - Fixing Delete Image in Categories
  • Version 0.1.10 - Adding Admin Menù
  • Version 0.1.9 - Adding Attachment's Files
  • Version 0.1.8 - Refactoring Categories Upload Image
  • Version 0.1.7 - Fixing TinyMCE problems
  • Version 0.1.6 - Adding Imperavi Redactor as Editor in Categories and Items
  • Version 0.1.5 - Update Item Created and Modified
  • Version 0.1.4 - Adding Item Variables in Module
  • Version 0.1.3 - Refactoring Module Variables
  • Version 0.1.2 - Added Facebook and Twitter Item View
  • Version 0.1.1 - Added Attachment's Table in database
  • Version 0.1.0 - Refactoring Project
  • Version 0.0.7 - Added Image Upload for Categories
  • Version 0.0.6 - Added Composer
  • Version 0.0.5 - Fixed problem with Upload Image
  • Version 0.0.4 - Added editors ckeditor, tinymce, markdown from other Packages
  • Version 0.0.3 - Various Fix and Update for Categories Views
  • Version 0.0.2 - Added multi-language with I18N
  • Version 0.0.1 - Initial Releases

INSTALLATION USING COMPOSER

The preferred way to install this extension is through composer.

Either run

$ php composer.phar require cinghie/yii2-articles "dev-master"

or add

"cinghie/yii2-articles": "dev-master"

CONFIGURATION

  • Copy images folder from Extension root to yor webroot
  • Add in your configuration file, in modules section:
    'modules' => [ 
    ...
    	// Module Articles
    	'articles' => [
    		'class' => 'cinghie\articles\Articles',
    
    	// Select Languages allowed
    	'languages' => [ 
    		"it-IT" => "it-IT", 
    		"en-GB" => "en-GB" 
    	],			
    	// Select Editor: no-editor, ckeditor, imperavi, tinymce, markdown
    	'editor' => 'ckeditor',
    	// Select Path To Upload Category Image
    	'categoryImagePath' => 'img/articles/categories/',
    	// Select Path To Upload Category Thumb
    	'categoryThumbPath' => 'img/articles/categories/thumb/',
    	// Select Path To Upload Item Image
    	'itemImagePath' => 'img/articles/items/',
    	// Select Path To Upload Item Thumb
    	'itemThumbPath' => 'img/articles/items/thumb/',
    	// Select Image Name: categoryname, original, casual
    	'imageNameType' => 'categoryname',
    	// Select Image Types allowed
    	'imageType'     => 'jpg,jpeg,gif,png',
    	// Thumbnails Options
    	'thumbOptions'  => [ 
    		'small'  => ['quality' => 100, 'width' => 150, 'height' => 100],
    		'medium' => ['quality' => 100, 'width' => 200, 'height' => 150],
    		'large'  => ['quality' => 100, 'width' => 300, 'height' => 250],
    		'extra'  => ['quality' => 100, 'width' => 400, 'height' => 350],
    	],
    ],	
    // Module Kartik-v Grid
    'gridview' =>  [
    	'class' => '\kartik\grid\Module',
    ],	
    // Module Kartik-v Markdown Editor
    'markdown' => [
    	'class' => 'kartik\markdown\Module',
    ],
    

    ... ]

  • Create Database Tables running the file articles\docs\database_tables.sql. If you want use database prefix, edit the file sql adding the prefix and remember to set it in your config:
    'components' => [
    ...
    	'db' => [
                'class' => 'yii\db\Connection',
                'dsn' => 'mysql:host=localhost;dbname=YOURDBNAME',
                'username' => 'YOURDBUSER',
                'password' => 'YOURDBPSW',
                'charset' => 'utf8',
                'tablePrefix' => 'YOURPREFIX_',
            ],
    ...
    ]
    

LINKS

  • Admin Panel: PathToApp/index.php?r=articles
  • Admin Panel with Pretty Urls: PathToApp/articles
  • Categories: PathToApp/index.php?r=articles/categories
  • Categories with Pretty Urls: PathToApp/articles/categories
  • Items: PathToApp/index.php?r=articles/items
  • Items with Pretty Urls: PathToApp/articles/items

LIBRARIES NEEDED

About

Yii2 Articles to create, manage and delete items in a Yii2 site

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 98.6%
  • CSS 1.4%