├── install ├── credential.txt └── assets │ └── images │ ├── avatar.jpg │ ├── clock.gif │ ├── loader.gif │ ├── logo.png │ ├── search.png │ ├── checkbox.png │ ├── favicon.png │ ├── loader2.gif │ ├── check_mark.png │ ├── filepreview.jpg │ ├── video_preview.jpg │ ├── checkbox-un-checked.png │ ├── index.html │ └── stripe-payment-logo.png ├── assets ├── css │ ├── blue.png │ ├── images │ │ ├── sort_asc.png │ │ ├── sort_both.png │ │ ├── sort_desc.png │ │ ├── sort_asc_disabled.png │ │ └── sort_desc_disabled.png │ ├── ie10-viewport-bug-workaround.css │ └── blue.css ├── images │ ├── logo.png │ ├── user.png │ ├── search.png │ ├── demo_pic.png │ └── favicon.ico ├── ckeditor │ ├── plugins │ │ ├── icons.png │ │ ├── link │ │ │ ├── ._images │ │ │ ├── ._dialogs │ │ │ ├── images │ │ │ │ ├── ._hidpi │ │ │ │ ├── anchor.png │ │ │ │ ├── ._anchor.png │ │ │ │ └── hidpi │ │ │ │ │ ├── anchor.png │ │ │ │ │ └── ._anchor.png │ │ │ └── dialogs │ │ │ │ ├── ._link.js │ │ │ │ ├── ._anchor.js │ │ │ │ └── anchor.js │ │ ├── wsc │ │ │ ├── ._dialogs │ │ │ ├── ._README.md │ │ │ ├── ._LICENSE.md │ │ │ ├── dialogs │ │ │ │ ├── ._wsc.js │ │ │ │ ├── ._wsc.css │ │ │ │ ├── ._wsc_ie.js │ │ │ │ ├── ._ciframe.html │ │ │ │ ├── ._tmpFrameset.html │ │ │ │ ├── wsc.css │ │ │ │ └── ciframe.html │ │ │ ├── README.md │ │ │ └── LICENSE.md │ │ ├── about │ │ │ ├── ._dialogs │ │ │ └── dialogs │ │ │ │ ├── ._hidpi │ │ │ │ ├── ._about.js │ │ │ │ ├── ._logo_ckeditor.png │ │ │ │ ├── logo_ckeditor.png │ │ │ │ ├── hidpi │ │ │ │ ├── logo_ckeditor.png │ │ │ │ └── ._logo_ckeditor.png │ │ │ │ └── about.js │ │ ├── icons_hidpi.png │ │ ├── image │ │ │ ├── ._dialogs │ │ │ ├── ._images │ │ │ ├── dialogs │ │ │ │ └── ._image.js │ │ │ └── images │ │ │ │ ├── noimage.png │ │ │ │ └── ._noimage.png │ │ ├── scayt │ │ │ ├── ._dialogs │ │ │ ├── ._LICENSE.md │ │ │ ├── ._README.md │ │ │ ├── dialogs │ │ │ │ ├── ._options.js │ │ │ │ ├── ._toolbar.css │ │ │ │ └── toolbar.css │ │ │ ├── README.md │ │ │ └── LICENSE.md │ │ ├── table │ │ │ ├── ._dialogs │ │ │ └── dialogs │ │ │ │ └── ._table.js │ │ ├── a11yhelp │ │ │ ├── ._dialogs │ │ │ └── dialogs │ │ │ │ ├── ._lang │ │ │ │ ├── ._a11yhelp.js │ │ │ │ └── lang │ │ │ │ ├── ._af.js │ │ │ │ ├── ._ar.js │ │ │ │ ├── ._bg.js │ │ │ │ ├── ._ca.js │ │ │ │ ├── ._cs.js │ │ │ │ ├── ._cy.js │ │ │ │ ├── ._da.js │ │ │ │ ├── ._de.js │ │ │ │ ├── ._el.js │ │ │ │ ├── ._en.js │ │ │ │ ├── ._eo.js │ │ │ │ ├── ._es.js │ │ │ │ ├── ._et.js │ │ │ │ ├── ._fa.js │ │ │ │ ├── ._fi.js │ │ │ │ ├── ._fr.js │ │ │ │ ├── ._gl.js │ │ │ │ ├── ._gu.js │ │ │ │ ├── ._he.js │ │ │ │ ├── ._hi.js │ │ │ │ ├── ._hr.js │ │ │ │ ├── ._hu.js │ │ │ │ ├── ._id.js │ │ │ │ ├── ._it.js │ │ │ │ ├── ._ja.js │ │ │ │ ├── ._km.js │ │ │ │ ├── ._ko.js │ │ │ │ ├── ._ku.js │ │ │ │ ├── ._lt.js │ │ │ │ ├── ._lv.js │ │ │ │ ├── ._mk.js │ │ │ │ ├── ._mn.js │ │ │ │ ├── ._nb.js │ │ │ │ ├── ._nl.js │ │ │ │ ├── ._no.js │ │ │ │ ├── ._pl.js │ │ │ │ ├── ._pt.js │ │ │ │ ├── ._ro.js │ │ │ │ ├── ._ru.js │ │ │ │ ├── ._si.js │ │ │ │ ├── ._sk.js │ │ │ │ ├── ._sl.js │ │ │ │ ├── ._sq.js │ │ │ │ ├── ._sr.js │ │ │ │ ├── ._sv.js │ │ │ │ ├── ._th.js │ │ │ │ ├── ._tr.js │ │ │ │ ├── ._tt.js │ │ │ │ ├── ._ug.js │ │ │ │ ├── ._uk.js │ │ │ │ ├── ._vi.js │ │ │ │ ├── ._zh.js │ │ │ │ ├── ._en-gb.js │ │ │ │ ├── ._fr-ca.js │ │ │ │ ├── ._pt-br.js │ │ │ │ ├── ._zh-cn.js │ │ │ │ ├── ._sr-latn.js │ │ │ │ ├── .__translationstatus.txt │ │ │ │ └── _translationstatus.txt │ │ ├── magicline │ │ │ ├── ._images │ │ │ └── images │ │ │ │ ├── ._hidpi │ │ │ │ ├── icon.png │ │ │ │ ├── ._icon.png │ │ │ │ ├── icon-rtl.png │ │ │ │ ├── ._icon-rtl.png │ │ │ │ └── hidpi │ │ │ │ ├── ._icon.png │ │ │ │ ├── icon.png │ │ │ │ ├── icon-rtl.png │ │ │ │ └── ._icon-rtl.png │ │ ├── clipboard │ │ │ ├── ._dialogs │ │ │ └── dialogs │ │ │ │ └── ._paste.js │ │ ├── tabletools │ │ │ ├── ._dialogs │ │ │ └── dialogs │ │ │ │ └── ._tableCell.js │ │ ├── pastefromword │ │ │ ├── ._filter │ │ │ └── filter │ │ │ │ └── ._default.js │ │ ├── specialchar │ │ │ ├── ._dialogs │ │ │ └── dialogs │ │ │ │ ├── ._lang │ │ │ │ ├── lang │ │ │ │ ├── ._af.js │ │ │ │ ├── ._ar.js │ │ │ │ ├── ._bg.js │ │ │ │ ├── ._ca.js │ │ │ │ ├── ._cs.js │ │ │ │ ├── ._cy.js │ │ │ │ ├── ._da.js │ │ │ │ ├── ._de.js │ │ │ │ ├── ._el.js │ │ │ │ ├── ._en.js │ │ │ │ ├── ._eo.js │ │ │ │ ├── ._es.js │ │ │ │ ├── ._et.js │ │ │ │ ├── ._fa.js │ │ │ │ ├── ._fi.js │ │ │ │ ├── ._fr.js │ │ │ │ ├── ._gl.js │ │ │ │ ├── ._he.js │ │ │ │ ├── ._hr.js │ │ │ │ ├── ._hu.js │ │ │ │ ├── ._id.js │ │ │ │ ├── ._it.js │ │ │ │ ├── ._ja.js │ │ │ │ ├── ._km.js │ │ │ │ ├── ._ku.js │ │ │ │ ├── ._lt.js │ │ │ │ ├── ._lv.js │ │ │ │ ├── ._nb.js │ │ │ │ ├── ._nl.js │ │ │ │ ├── ._no.js │ │ │ │ ├── ._pl.js │ │ │ │ ├── ._pt.js │ │ │ │ ├── ._ru.js │ │ │ │ ├── ._si.js │ │ │ │ ├── ._sk.js │ │ │ │ ├── ._sl.js │ │ │ │ ├── ._sq.js │ │ │ │ ├── ._sv.js │ │ │ │ ├── ._th.js │ │ │ │ ├── ._tr.js │ │ │ │ ├── ._tt.js │ │ │ │ ├── ._ug.js │ │ │ │ ├── ._uk.js │ │ │ │ ├── ._vi.js │ │ │ │ ├── ._zh.js │ │ │ │ ├── ._en-gb.js │ │ │ │ ├── ._fr-ca.js │ │ │ │ ├── ._pt-br.js │ │ │ │ ├── ._zh-cn.js │ │ │ │ ├── .__translationstatus.txt │ │ │ │ └── _translationstatus.txt │ │ │ │ └── ._specialchar.js │ │ └── dialog │ │ │ ├── ._dialogDefinition.js │ │ │ └── dialogDefinition.js │ ├── skins │ │ ├── moono │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ └── images │ │ │ │ ├── arrow.png │ │ │ │ ├── close.png │ │ │ │ ├── lock.png │ │ │ │ ├── refresh.png │ │ │ │ ├── hidpi │ │ │ │ ├── lock.png │ │ │ │ ├── close.png │ │ │ │ ├── refresh.png │ │ │ │ └── lock-open.png │ │ │ │ └── lock-open.png │ │ └── bootstrapck │ │ │ ├── icons.png │ │ │ ├── .temp │ │ │ ├── ._css │ │ │ └── css │ │ │ │ ├── ._dialog.css │ │ │ │ ├── ._editor.css │ │ │ │ ├── ._dialog_ie.css │ │ │ │ ├── ._editor_ie.css │ │ │ │ ├── ._dialog_ie7.css │ │ │ │ ├── ._dialog_ie8.css │ │ │ │ ├── ._dialog_opera.css │ │ │ │ ├── ._editor_gecko.css │ │ │ │ ├── ._editor_ie7.css │ │ │ │ ├── ._editor_ie8.css │ │ │ │ ├── ._dialog_iequirks.css │ │ │ │ └── ._editor_iequirks.css │ │ │ ├── icons_hidpi.png │ │ │ ├── images │ │ │ ├── lock.png │ │ │ ├── arrow.png │ │ │ ├── close.png │ │ │ ├── refresh.png │ │ │ ├── lock-open.png │ │ │ └── hidpi │ │ │ │ ├── close.png │ │ │ │ ├── lock.png │ │ │ │ ├── refresh.png │ │ │ │ └── lock-open.png │ │ │ ├── scss │ │ │ ├── config │ │ │ │ ├── _config.scss │ │ │ │ ├── _defaults.scss │ │ │ │ └── _colors.scss │ │ │ ├── browser-specific │ │ │ │ ├── iequirks │ │ │ │ │ ├── dialog_iequirks.scss │ │ │ │ │ └── editor_iequirks.scss │ │ │ │ ├── gecko │ │ │ │ │ └── editor_gecko.scss │ │ │ │ ├── ie8 │ │ │ │ │ ├── editor_ie8.scss │ │ │ │ │ └── dialog_ie8.scss │ │ │ │ ├── opera │ │ │ │ │ └── dialog_opera.scss │ │ │ │ ├── ie7 │ │ │ │ │ └── dialog_ie7.scss │ │ │ │ └── ie │ │ │ │ │ ├── dialog_ie.scss │ │ │ │ │ └── editor_ie.scss │ │ │ └── components │ │ │ │ └── _presets.scss │ │ │ ├── sample │ │ │ ├── css │ │ │ │ └── bootstrapck-sample.css │ │ │ └── js │ │ │ │ └── analytics.js │ │ │ └── readme.md │ ├── README.md │ └── config.js ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 └── js │ ├── ie10-viewport-bug-workaround.js │ ├── date.js │ └── dataTables.bootstrap.min.js ├── system ├── fonts │ ├── texb.ttf │ └── index.html ├── .htaccess ├── index.html ├── core │ ├── index.html │ └── compat │ │ └── index.html ├── database │ ├── index.html │ └── drivers │ │ ├── index.html │ │ ├── cubrid │ │ └── index.html │ │ ├── ibase │ │ └── index.html │ │ ├── mssql │ │ └── index.html │ │ ├── mysql │ │ └── index.html │ │ ├── mysqli │ │ └── index.html │ │ ├── oci8 │ │ └── index.html │ │ ├── odbc │ │ └── index.html │ │ ├── pdo │ │ ├── index.html │ │ └── subdrivers │ │ │ └── index.html │ │ ├── sqlite │ │ └── index.html │ │ ├── sqlsrv │ │ └── index.html │ │ ├── postgre │ │ └── index.html │ │ └── sqlite3 │ │ └── index.html ├── helpers │ └── index.html ├── language │ ├── index.html │ └── english │ │ └── index.html └── libraries │ ├── index.html │ ├── Cache │ ├── index.html │ └── drivers │ │ └── index.html │ ├── Session │ ├── index.html │ └── drivers │ │ └── index.html │ └── Javascript │ └── index.html ├── application ├── .htaccess ├── cache │ ├── .htaccess │ └── index.html ├── views │ ├── errors │ │ ├── cli │ │ │ ├── error_404.php │ │ │ ├── error_general.php │ │ │ ├── error_db.php │ │ │ ├── index.html │ │ │ ├── error_php.php │ │ │ └── error_exception.php │ │ ├── index.html │ │ └── html │ │ │ ├── index.html │ │ │ ├── error_php.php │ │ │ ├── error_exception.php │ │ │ ├── error_general.php │ │ │ ├── error_db.php │ │ │ └── error_404.php │ ├── index.html │ └── include │ │ └── menu.php ├── index.html ├── config │ ├── index.html │ ├── hooks.php │ ├── profiler.php │ ├── memcached.php │ └── database.php ├── core │ ├── index.html │ ├── MY_Loader.php │ └── MY_Router.php ├── helpers │ └── index.html ├── hooks │ └── index.html ├── language │ ├── index.html │ └── english │ │ └── index.html ├── libraries │ ├── phpmailer │ │ ├── extras │ │ │ └── class.html2text.inc │ │ └── language │ │ │ ├── phpmailer.lang-zh.php │ │ │ ├── phpmailer.lang-zh_cn.php │ │ │ ├── phpmailer.lang-ch.php │ │ │ ├── phpmailer.lang-ja.php │ │ │ ├── phpmailer.lang-no.php │ │ │ ├── phpmailer.lang-cz.php │ │ │ ├── phpmailer.lang-pl.php │ │ │ ├── phpmailer.lang-se.php │ │ │ ├── phpmailer.lang-hu.php │ │ │ ├── phpmailer.lang-dk.php │ │ │ ├── phpmailer.lang-tr.php │ │ │ ├── phpmailer.lang-es.php │ │ │ ├── phpmailer.lang-fr.php │ │ │ ├── phpmailer.lang-sk.php │ │ │ ├── phpmailer.lang-ar.php │ │ │ ├── phpmailer.lang-ca.php │ │ │ ├── phpmailer.lang-et.php │ │ │ ├── phpmailer.lang-ru.php │ │ │ ├── phpmailer.lang-ro.php │ │ │ ├── phpmailer.lang-fo.php │ │ │ ├── phpmailer.lang-fi.php │ │ │ ├── phpmailer.lang-br.php │ │ │ ├── phpmailer.lang-it.php │ │ │ └── phpmailer.lang-de.php │ ├── index.html │ └── Send_mail.php ├── logs │ └── index.html ├── models │ └── index.html ├── controllers │ └── index.html ├── third_party │ └── index.html └── modules │ ├── about │ ├── controllers │ │ └── About.php │ └── views │ │ └── index.php │ ├── income_category │ └── views │ │ ├── add_update.php │ │ └── tableData.php │ ├── expense_category │ └── views │ │ ├── add_update.php │ │ └── tableData.php │ ├── income │ └── views │ │ ├── add_update.php │ │ └── tableData.php │ ├── user │ └── views │ │ ├── forget_password.php │ │ └── login.php │ ├── templates │ └── models │ │ └── Templates_model.php │ ├── setting │ └── models │ │ └── Setting_model.php │ └── expenses │ └── views │ └── tableData.php └── .htaccess /install/credential.txt: -------------------------------------------------------------------------------- 1 | User type : admin (default) 2 | username : admin@admin.com 3 | password : 123456 -------------------------------------------------------------------------------- /assets/css/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/css/blue.png -------------------------------------------------------------------------------- /assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/images/logo.png -------------------------------------------------------------------------------- /assets/images/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/images/user.png -------------------------------------------------------------------------------- /system/fonts/texb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/system/fonts/texb.ttf -------------------------------------------------------------------------------- /assets/images/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/images/search.png -------------------------------------------------------------------------------- /assets/images/demo_pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/images/demo_pic.png -------------------------------------------------------------------------------- /assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/images/favicon.ico -------------------------------------------------------------------------------- /system/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /assets/css/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/css/images/sort_asc.png -------------------------------------------------------------------------------- /assets/css/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/css/images/sort_both.png -------------------------------------------------------------------------------- /assets/css/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/css/images/sort_desc.png -------------------------------------------------------------------------------- /install/assets/images/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/install/assets/images/avatar.jpg -------------------------------------------------------------------------------- /install/assets/images/clock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/install/assets/images/clock.gif -------------------------------------------------------------------------------- /install/assets/images/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/install/assets/images/loader.gif -------------------------------------------------------------------------------- /install/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/install/assets/images/logo.png -------------------------------------------------------------------------------- /install/assets/images/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/install/assets/images/search.png -------------------------------------------------------------------------------- /application/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/icons.png -------------------------------------------------------------------------------- /install/assets/images/checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/install/assets/images/checkbox.png -------------------------------------------------------------------------------- /install/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/install/assets/images/favicon.png -------------------------------------------------------------------------------- /install/assets/images/loader2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/install/assets/images/loader2.gif -------------------------------------------------------------------------------- /application/cache/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/link/._images: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/link/._images -------------------------------------------------------------------------------- /assets/ckeditor/plugins/wsc/._dialogs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/wsc/._dialogs -------------------------------------------------------------------------------- /assets/ckeditor/skins/moono/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/skins/moono/icons.png -------------------------------------------------------------------------------- /install/assets/images/check_mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/install/assets/images/check_mark.png -------------------------------------------------------------------------------- /install/assets/images/filepreview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/install/assets/images/filepreview.jpg -------------------------------------------------------------------------------- /assets/ckeditor/plugins/about/._dialogs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/about/._dialogs -------------------------------------------------------------------------------- /assets/ckeditor/plugins/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/icons_hidpi.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/image/._dialogs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/image/._dialogs -------------------------------------------------------------------------------- /assets/ckeditor/plugins/image/._images: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/image/._images -------------------------------------------------------------------------------- /assets/ckeditor/plugins/link/._dialogs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/link/._dialogs -------------------------------------------------------------------------------- /assets/ckeditor/plugins/scayt/._dialogs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/scayt/._dialogs -------------------------------------------------------------------------------- /assets/ckeditor/plugins/table/._dialogs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/table/._dialogs -------------------------------------------------------------------------------- /assets/ckeditor/plugins/wsc/._README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/wsc/._README.md -------------------------------------------------------------------------------- /assets/css/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/css/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /install/assets/images/video_preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/install/assets/images/video_preview.jpg -------------------------------------------------------------------------------- /assets/ckeditor/plugins/a11yhelp/._dialogs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/a11yhelp/._dialogs -------------------------------------------------------------------------------- /assets/ckeditor/plugins/magicline/._images: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/magicline/._images -------------------------------------------------------------------------------- /assets/ckeditor/plugins/scayt/._LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/scayt/._LICENSE.md -------------------------------------------------------------------------------- /assets/ckeditor/plugins/scayt/._README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/scayt/._README.md -------------------------------------------------------------------------------- /assets/ckeditor/plugins/wsc/._LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/wsc/._LICENSE.md -------------------------------------------------------------------------------- /assets/css/images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/css/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/clipboard/._dialogs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/clipboard/._dialogs -------------------------------------------------------------------------------- /assets/ckeditor/plugins/link/images/._hidpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/link/images/._hidpi -------------------------------------------------------------------------------- /assets/ckeditor/plugins/tabletools/._dialogs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/tabletools/._dialogs -------------------------------------------------------------------------------- /assets/ckeditor/plugins/wsc/dialogs/._wsc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/wsc/dialogs/._wsc.js -------------------------------------------------------------------------------- /assets/ckeditor/skins/bootstrapck/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/skins/bootstrapck/icons.png -------------------------------------------------------------------------------- /assets/ckeditor/skins/moono/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/skins/moono/icons_hidpi.png -------------------------------------------------------------------------------- /assets/ckeditor/skins/moono/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/skins/moono/images/arrow.png -------------------------------------------------------------------------------- /assets/ckeditor/skins/moono/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/skins/moono/images/close.png -------------------------------------------------------------------------------- /assets/ckeditor/skins/moono/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/skins/moono/images/lock.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/a11yhelp/dialogs/._lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/a11yhelp/dialogs/._lang -------------------------------------------------------------------------------- /assets/ckeditor/plugins/about/dialogs/._hidpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/about/dialogs/._hidpi -------------------------------------------------------------------------------- /assets/ckeditor/plugins/link/dialogs/._link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/link/dialogs/._link.js -------------------------------------------------------------------------------- /assets/ckeditor/plugins/link/images/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/link/images/anchor.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/pastefromword/._filter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/pastefromword/._filter -------------------------------------------------------------------------------- /assets/ckeditor/plugins/specialchar/._dialogs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/specialchar/._dialogs -------------------------------------------------------------------------------- /assets/ckeditor/plugins/wsc/dialogs/._wsc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/wsc/dialogs/._wsc.css -------------------------------------------------------------------------------- /assets/ckeditor/plugins/wsc/dialogs/._wsc_ie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/wsc/dialogs/._wsc_ie.js -------------------------------------------------------------------------------- /assets/ckeditor/skins/bootstrapck/.temp/._css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/skins/bootstrapck/.temp/._css -------------------------------------------------------------------------------- /assets/ckeditor/skins/moono/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/skins/moono/images/refresh.png -------------------------------------------------------------------------------- /assets/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /assets/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /assets/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /assets/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /install/assets/images/checkbox-un-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/install/assets/images/checkbox-un-checked.png -------------------------------------------------------------------------------- /install/assets/images/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /install/assets/images/stripe-payment-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/install/assets/images/stripe-payment-logo.png -------------------------------------------------------------------------------- /application/views/errors/cli/error_404.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/a11yhelp/dialogs/lang/._en-gb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/a11yhelp/dialogs/lang/._en-gb.js -------------------------------------------------------------------------------- /assets/ckeditor/plugins/a11yhelp/dialogs/lang/._fr-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/a11yhelp/dialogs/lang/._fr-ca.js -------------------------------------------------------------------------------- /assets/ckeditor/plugins/a11yhelp/dialogs/lang/._pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/a11yhelp/dialogs/lang/._pt-br.js -------------------------------------------------------------------------------- /assets/ckeditor/plugins/a11yhelp/dialogs/lang/._zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/a11yhelp/dialogs/lang/._zh-cn.js -------------------------------------------------------------------------------- /assets/ckeditor/plugins/about/dialogs/._logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/about/dialogs/._logo_ckeditor.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/about/dialogs/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/about/dialogs/logo_ckeditor.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/dialog/dialogDefinition.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/magicline/images/._icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/magicline/images/._icon-rtl.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/magicline/images/hidpi/._icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/magicline/images/hidpi/._icon.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/magicline/images/hidpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/magicline/images/hidpi/icon.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/pastefromword/filter/._default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/pastefromword/filter/._default.js -------------------------------------------------------------------------------- /assets/ckeditor/plugins/specialchar/dialogs/lang/._af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/specialchar/dialogs/lang/._af.js -------------------------------------------------------------------------------- /assets/ckeditor/plugins/specialchar/dialogs/lang/._ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/specialchar/dialogs/lang/._ar.js -------------------------------------------------------------------------------- /assets/ckeditor/plugins/specialchar/dialogs/lang/._bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/specialchar/dialogs/lang/._bg.js -------------------------------------------------------------------------------- /assets/ckeditor/plugins/specialchar/dialogs/lang/._ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/specialchar/dialogs/lang/._ca.js -------------------------------------------------------------------------------- /assets/ckeditor/plugins/specialchar/dialogs/lang/._cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/specialchar/dialogs/lang/._cs.js -------------------------------------------------------------------------------- /assets/ckeditor/plugins/specialchar/dialogs/lang/._cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/specialchar/dialogs/lang/._cy.js -------------------------------------------------------------------------------- /assets/ckeditor/plugins/specialchar/dialogs/lang/._da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/specialchar/dialogs/lang/._da.js -------------------------------------------------------------------------------- /assets/ckeditor/plugins/specialchar/dialogs/lang/._de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/specialchar/dialogs/lang/._de.js -------------------------------------------------------------------------------- /assets/ckeditor/plugins/specialchar/dialogs/lang/._el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/specialchar/dialogs/lang/._el.js -------------------------------------------------------------------------------- /assets/ckeditor/plugins/specialchar/dialogs/lang/._en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/specialchar/dialogs/lang/._en.js -------------------------------------------------------------------------------- /assets/ckeditor/plugins/specialchar/dialogs/lang/._eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/specialchar/dialogs/lang/._eo.js -------------------------------------------------------------------------------- /assets/ckeditor/plugins/specialchar/dialogs/lang/._es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/specialchar/dialogs/lang/._es.js -------------------------------------------------------------------------------- /assets/ckeditor/plugins/specialchar/dialogs/lang/._et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/specialchar/dialogs/lang/._et.js -------------------------------------------------------------------------------- /assets/ckeditor/plugins/specialchar/dialogs/lang/._fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/specialchar/dialogs/lang/._fa.js -------------------------------------------------------------------------------- /assets/ckeditor/plugins/specialchar/dialogs/lang/._fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/specialchar/dialogs/lang/._fi.js -------------------------------------------------------------------------------- /assets/ckeditor/plugins/specialchar/dialogs/lang/._fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/specialchar/dialogs/lang/._fr.js -------------------------------------------------------------------------------- /assets/ckeditor/plugins/specialchar/dialogs/lang/._gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/specialchar/dialogs/lang/._gl.js -------------------------------------------------------------------------------- /assets/ckeditor/plugins/specialchar/dialogs/lang/._he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/specialchar/dialogs/lang/._he.js -------------------------------------------------------------------------------- /assets/ckeditor/plugins/specialchar/dialogs/lang/._hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/specialchar/dialogs/lang/._hr.js -------------------------------------------------------------------------------- /assets/ckeditor/plugins/specialchar/dialogs/lang/._hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/specialchar/dialogs/lang/._hu.js -------------------------------------------------------------------------------- /assets/ckeditor/plugins/specialchar/dialogs/lang/._id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/specialchar/dialogs/lang/._id.js -------------------------------------------------------------------------------- /assets/ckeditor/plugins/specialchar/dialogs/lang/._it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/specialchar/dialogs/lang/._it.js -------------------------------------------------------------------------------- /assets/ckeditor/plugins/specialchar/dialogs/lang/._ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/specialchar/dialogs/lang/._ja.js -------------------------------------------------------------------------------- /assets/ckeditor/plugins/specialchar/dialogs/lang/._km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/specialchar/dialogs/lang/._km.js -------------------------------------------------------------------------------- /assets/ckeditor/plugins/specialchar/dialogs/lang/._ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/specialchar/dialogs/lang/._ku.js -------------------------------------------------------------------------------- /assets/ckeditor/plugins/specialchar/dialogs/lang/._lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/specialchar/dialogs/lang/._lt.js -------------------------------------------------------------------------------- /assets/ckeditor/plugins/specialchar/dialogs/lang/._lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/specialchar/dialogs/lang/._lv.js -------------------------------------------------------------------------------- /assets/ckeditor/plugins/specialchar/dialogs/lang/._nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/specialchar/dialogs/lang/._nb.js -------------------------------------------------------------------------------- /assets/ckeditor/plugins/specialchar/dialogs/lang/._nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/specialchar/dialogs/lang/._nl.js -------------------------------------------------------------------------------- /assets/ckeditor/plugins/specialchar/dialogs/lang/._no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/specialchar/dialogs/lang/._no.js -------------------------------------------------------------------------------- /assets/ckeditor/plugins/specialchar/dialogs/lang/._pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/specialchar/dialogs/lang/._pl.js -------------------------------------------------------------------------------- /assets/ckeditor/plugins/specialchar/dialogs/lang/._pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/specialchar/dialogs/lang/._pt.js -------------------------------------------------------------------------------- /assets/ckeditor/plugins/specialchar/dialogs/lang/._ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/specialchar/dialogs/lang/._ru.js -------------------------------------------------------------------------------- /assets/ckeditor/plugins/specialchar/dialogs/lang/._si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/specialchar/dialogs/lang/._si.js -------------------------------------------------------------------------------- /assets/ckeditor/plugins/specialchar/dialogs/lang/._sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/specialchar/dialogs/lang/._sk.js -------------------------------------------------------------------------------- /assets/ckeditor/plugins/specialchar/dialogs/lang/._sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/specialchar/dialogs/lang/._sl.js -------------------------------------------------------------------------------- /assets/ckeditor/plugins/specialchar/dialogs/lang/._sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/specialchar/dialogs/lang/._sq.js -------------------------------------------------------------------------------- /assets/ckeditor/plugins/specialchar/dialogs/lang/._sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/specialchar/dialogs/lang/._sv.js -------------------------------------------------------------------------------- /assets/ckeditor/plugins/specialchar/dialogs/lang/._th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/specialchar/dialogs/lang/._th.js -------------------------------------------------------------------------------- /assets/ckeditor/plugins/specialchar/dialogs/lang/._tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/specialchar/dialogs/lang/._tr.js -------------------------------------------------------------------------------- /assets/ckeditor/plugins/specialchar/dialogs/lang/._tt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/specialchar/dialogs/lang/._tt.js -------------------------------------------------------------------------------- /assets/ckeditor/plugins/specialchar/dialogs/lang/._ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/specialchar/dialogs/lang/._ug.js -------------------------------------------------------------------------------- /assets/ckeditor/plugins/specialchar/dialogs/lang/._uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/specialchar/dialogs/lang/._uk.js -------------------------------------------------------------------------------- /assets/ckeditor/plugins/specialchar/dialogs/lang/._vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/specialchar/dialogs/lang/._vi.js -------------------------------------------------------------------------------- /assets/ckeditor/plugins/specialchar/dialogs/lang/._zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/specialchar/dialogs/lang/._zh.js -------------------------------------------------------------------------------- /assets/ckeditor/plugins/tabletools/dialogs/._tableCell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/tabletools/dialogs/._tableCell.js -------------------------------------------------------------------------------- /assets/ckeditor/skins/bootstrapck/.temp/css/._dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/skins/bootstrapck/.temp/css/._dialog.css -------------------------------------------------------------------------------- /assets/ckeditor/skins/bootstrapck/.temp/css/._editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/skins/bootstrapck/.temp/css/._editor.css -------------------------------------------------------------------------------- /assets/ckeditor/skins/bootstrapck/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/skins/bootstrapck/images/hidpi/close.png -------------------------------------------------------------------------------- /assets/ckeditor/skins/bootstrapck/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/skins/bootstrapck/images/hidpi/lock.png -------------------------------------------------------------------------------- /system/core/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/fonts/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/language/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/config/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/core/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/hooks/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/language/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/libraries/phpmailer/extras/class.html2text.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/application/libraries/phpmailer/extras/class.html2text.inc -------------------------------------------------------------------------------- /application/logs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/models/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/a11yhelp/dialogs/lang/._sr-latn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/a11yhelp/dialogs/lang/._sr-latn.js -------------------------------------------------------------------------------- /assets/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/specialchar/dialogs/lang/._en-gb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/specialchar/dialogs/lang/._en-gb.js -------------------------------------------------------------------------------- /assets/ckeditor/plugins/specialchar/dialogs/lang/._fr-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/specialchar/dialogs/lang/._fr-ca.js -------------------------------------------------------------------------------- /assets/ckeditor/plugins/specialchar/dialogs/lang/._pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/specialchar/dialogs/lang/._pt-br.js -------------------------------------------------------------------------------- /assets/ckeditor/plugins/specialchar/dialogs/lang/._zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/specialchar/dialogs/lang/._zh-cn.js -------------------------------------------------------------------------------- /assets/ckeditor/skins/bootstrapck/.temp/css/._dialog_ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/skins/bootstrapck/.temp/css/._dialog_ie.css -------------------------------------------------------------------------------- /assets/ckeditor/skins/bootstrapck/.temp/css/._editor_ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/skins/bootstrapck/.temp/css/._editor_ie.css -------------------------------------------------------------------------------- /assets/ckeditor/skins/bootstrapck/images/hidpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/skins/bootstrapck/images/hidpi/refresh.png -------------------------------------------------------------------------------- /system/core/compat/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/controllers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/third_party/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/errors/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/magicline/images/hidpi/._icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/magicline/images/hidpi/._icon-rtl.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/specialchar/dialogs/._specialchar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/specialchar/dialogs/._specialchar.js -------------------------------------------------------------------------------- /assets/ckeditor/skins/bootstrapck/.temp/css/._dialog_ie7.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/skins/bootstrapck/.temp/css/._dialog_ie7.css -------------------------------------------------------------------------------- /assets/ckeditor/skins/bootstrapck/.temp/css/._dialog_ie8.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/skins/bootstrapck/.temp/css/._dialog_ie8.css -------------------------------------------------------------------------------- /assets/ckeditor/skins/bootstrapck/.temp/css/._dialog_opera.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/skins/bootstrapck/.temp/css/._dialog_opera.css -------------------------------------------------------------------------------- /assets/ckeditor/skins/bootstrapck/.temp/css/._editor_gecko.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/skins/bootstrapck/.temp/css/._editor_gecko.css -------------------------------------------------------------------------------- /assets/ckeditor/skins/bootstrapck/.temp/css/._editor_ie7.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/skins/bootstrapck/.temp/css/._editor_ie7.css -------------------------------------------------------------------------------- /assets/ckeditor/skins/bootstrapck/.temp/css/._editor_ie8.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/skins/bootstrapck/.temp/css/._editor_ie8.css -------------------------------------------------------------------------------- /assets/ckeditor/skins/bootstrapck/images/hidpi/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/skins/bootstrapck/images/hidpi/lock-open.png -------------------------------------------------------------------------------- /system/database/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/language/english/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Session/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/language/english/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/errors/cli/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/errors/html/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/about/dialogs/hidpi/._logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/about/dialogs/hidpi/._logo_ckeditor.png -------------------------------------------------------------------------------- /system/database/drivers/cubrid/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/ibase/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/mssql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/mysql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/mysqli/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/oci8/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/odbc/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/pdo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/sqlite/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Javascript/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /assets/ckeditor/skins/bootstrapck/.temp/css/._dialog_iequirks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/skins/bootstrapck/.temp/css/._dialog_iequirks.css -------------------------------------------------------------------------------- /assets/ckeditor/skins/bootstrapck/.temp/css/._editor_iequirks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/skins/bootstrapck/.temp/css/._editor_iequirks.css -------------------------------------------------------------------------------- /system/database/drivers/postgre/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/sqlite3/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Session/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/core/MY_Loader.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/a11yhelp/dialogs/lang/.__translationstatus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/a11yhelp/dialogs/lang/.__translationstatus.txt -------------------------------------------------------------------------------- /assets/ckeditor/plugins/specialchar/dialogs/lang/.__translationstatus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-project-builder/expense-management-codeigniter-adminlte-php/HEAD/assets/ckeditor/plugins/specialchar/dialogs/lang/.__translationstatus.txt -------------------------------------------------------------------------------- /assets/ckeditor/skins/bootstrapck/scss/config/_config.scss: -------------------------------------------------------------------------------- 1 | /* ========================================================================== 2 | Config 3 | 4 | This file is exclusively intended for setting up imports 5 | Never add styles directly to this file 6 | ========================================================================== */ 7 | 8 | @import "colors"; 9 | @import "defaults"; 10 | -------------------------------------------------------------------------------- /application/config/hooks.php: -------------------------------------------------------------------------------- 1 | 2 | RewriteEngine On 3 | 4 | RewriteCond %{REQUEST_URI} ^system.* 5 | RewriteRule ^(.*)$ /index.php?/$1 [L] 6 | 7 | RewriteCond %{REQUEST_URI} ^application.* 8 | RewriteRule ^(.*)$ /index.php?/$1 [L] 9 | 10 | RewriteCond %{REQUEST_URI} ^asset.* 11 | RewriteRule ^(.*)$ /index.php?/$1 [L] 12 | 13 | RewriteCond %{REQUEST_FILENAME} !-f 14 | RewriteCond %{REQUEST_FILENAME} !-d 15 | RewriteRule ^(.*)$ index.php/$1 [L] 16 | -------------------------------------------------------------------------------- /application/modules/about/controllers/About.php: -------------------------------------------------------------------------------- 1 | load->view("include/header"); 15 | $this->load->view("index"); 16 | $this->load->view("include/footer"); 17 | } 18 | } 19 | ?> -------------------------------------------------------------------------------- /assets/css/ie10-viewport-bug-workaround.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * IE10 viewport hack for Surface/desktop Windows 8 bug 3 | * Copyright 2014-2015 Twitter, Inc. 4 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) 5 | */ 6 | 7 | /* 8 | * See the Getting Started docs for more information: 9 | * http://getbootstrap.com/getting-started/#support-ie10-width 10 | */ 11 | @-ms-viewport { width: device-width; } 12 | @-o-viewport { width: device-width; } 13 | @viewport { width: device-width; } 14 | -------------------------------------------------------------------------------- /application/config/profiler.php: -------------------------------------------------------------------------------- 1 | array( 15 | 'hostname' => '127.0.0.1', 16 | 'port' => '11211', 17 | 'weight' => '1', 18 | ), 19 | ); 20 | -------------------------------------------------------------------------------- /assets/ckeditor/skins/bootstrapck/scss/browser-specific/iequirks/dialog_iequirks.scss: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | /* 7 | dialog_ie7.css 8 | =============== 9 | 10 | This file contains styles to used by Internet Explorer in 11 | Quirks mode only. 12 | */ 13 | 14 | /* Base it on dialog_ie.css, overriding it with styles defined in this file. */ 15 | @import "../../dialog/dialog"; 16 | 17 | /* [IE7-8] Filter on footer causes background artifacts when opening dialog. */ 18 | .cke_dialog_footer 19 | { 20 | filter: ""; 21 | } 22 | -------------------------------------------------------------------------------- /assets/ckeditor/skins/bootstrapck/scss/browser-specific/gecko/editor_gecko.scss: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | /* 7 | editor_gecko.css 8 | ================== 9 | 10 | This file contains styles to used by all Gecko based browsers (Firefox) only. 11 | */ 12 | 13 | /* Base it on editor.css, overriding it with styles defined in this file. */ 14 | @import "../../components/editor"; 15 | 16 | .cke_bottom 17 | { 18 | padding-bottom: 3px; 19 | } 20 | 21 | .cke_combo_text 22 | { 23 | margin-bottom: -1px; 24 | margin-top: 1px; 25 | } 26 | -------------------------------------------------------------------------------- /assets/ckeditor/skins/bootstrapck/scss/browser-specific/ie8/editor_ie8.scss: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | /* 7 | editor_ie8.css 8 | =============== 9 | 10 | This file contains styles to used by Internet Explorer 8 only. 11 | */ 12 | 13 | /* Base it on editor_ie.css, overriding it with styles defined in this file. */ 14 | @import "../../components/editor"; 15 | 16 | .cke_toolbox_collapser .cke_arrow 17 | { 18 | border-width:4px; 19 | } 20 | .cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow 21 | { 22 | border-width:3px; 23 | } 24 | .cke_toolbox_collapser .cke_arrow 25 | { 26 | margin-top: 0; 27 | } 28 | -------------------------------------------------------------------------------- /assets/js/ie10-viewport-bug-workaround.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * IE10 viewport hack for Surface/desktop Windows 8 bug 3 | * Copyright 2014-2015 Twitter, Inc. 4 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) 5 | */ 6 | 7 | // See the Getting Started docs for more information: 8 | // http://getbootstrap.com/getting-started/#support-ie10-width 9 | 10 | (function () { 11 | 'use strict'; 12 | 13 | if (navigator.userAgent.match(/IEMobile\/10\.0/)) { 14 | var msViewportStyle = document.createElement('style') 15 | msViewportStyle.appendChild( 16 | document.createTextNode( 17 | '@-ms-viewport{width:auto!important}' 18 | ) 19 | ) 20 | document.querySelector('head').appendChild(msViewportStyle) 21 | } 22 | 23 | })(); 24 | -------------------------------------------------------------------------------- /application/views/errors/cli/error_php.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | A PHP Error was encountered 4 | 5 | Severity: 6 | Message: 7 | Filename: 8 | Line Number: 9 | 10 | 11 | 12 | Backtrace: 13 | 14 | 15 | File: 16 | Line: 17 | Function: 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /assets/ckeditor/skins/bootstrapck/scss/browser-specific/ie8/dialog_ie8.scss: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | /* 7 | dialog_ie8.css 8 | =============== 9 | 10 | This file contains styles to used by Internet Explorer 8 only. 11 | */ 12 | 13 | /* Base it on dialog_ie.css, overriding it with styles defined in this file. */ 14 | @import "../../dialog/dialog"; 15 | 16 | /* Without the following, IE8 cannot compensate footer button thick borders 17 | on :focus/:active. */ 18 | a.cke_dialog_ui_button_ok:focus span, 19 | a.cke_dialog_ui_button_ok:active span, 20 | a.cke_dialog_ui_button_cancel:focus span, 21 | a.cke_dialog_ui_button_cancel:active span 22 | { 23 | display: block; 24 | } 25 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/specialchar/dialogs/lang/_translationstatus.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 2 | For licensing, see LICENSE.md or http://ckeditor.com/license 3 | 4 | cs.js Found: 118 Missing: 0 5 | cy.js Found: 118 Missing: 0 6 | de.js Found: 118 Missing: 0 7 | el.js Found: 16 Missing: 102 8 | eo.js Found: 118 Missing: 0 9 | et.js Found: 31 Missing: 87 10 | fa.js Found: 24 Missing: 94 11 | fi.js Found: 23 Missing: 95 12 | fr.js Found: 118 Missing: 0 13 | hr.js Found: 23 Missing: 95 14 | it.js Found: 118 Missing: 0 15 | nb.js Found: 118 Missing: 0 16 | nl.js Found: 118 Missing: 0 17 | no.js Found: 118 Missing: 0 18 | tr.js Found: 118 Missing: 0 19 | ug.js Found: 39 Missing: 79 20 | zh-cn.js Found: 118 Missing: 0 21 | -------------------------------------------------------------------------------- /assets/ckeditor/skins/bootstrapck/scss/browser-specific/opera/dialog_opera.scss: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | /* 7 | dialog_opera.css 8 | =============== 9 | 10 | This file contains styles to used by all versions of Opera only. 11 | */ 12 | 13 | /* Base it on dialog.css, overriding it with styles defined in this file. */ 14 | @import "../../dialog/dialog"; 15 | 16 | /* Opera has problem with box-shadow and td with border-collapse: collapse */ 17 | /* inset shadow is mis-aligned */ 18 | .cke_dialog_footer 19 | { 20 | display: block; 21 | height: 38px; 22 | } 23 | 24 | .cke_ltr .cke_dialog_footer > * 25 | { 26 | float:right; 27 | } 28 | .cke_rtl .cke_dialog_footer > * 29 | { 30 | float:left; 31 | } 32 | -------------------------------------------------------------------------------- /assets/ckeditor/skins/bootstrapck/scss/components/_presets.scss: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | /* "Source" button label */ 7 | .cke_button__source_label, 8 | .cke_button__sourcedialog_label { 9 | display: inline; 10 | } 11 | 12 | /* "Font Size" combo width */ 13 | .cke_combo__fontsize .cke_combo_text { 14 | width: 30px; 15 | } 16 | 17 | /* "Font Size" panel size */ 18 | .cke_combopanel__fontsize { 19 | width: 120px; 20 | } 21 | 22 | /* Editable regions */ 23 | .cke_source { 24 | font-family: 'Courier New' , Monospace; 25 | font-size: small; 26 | background-color: #fff; 27 | white-space: pre; 28 | } 29 | 30 | .cke_wysiwyg_frame, .cke_wysiwyg_div { 31 | background-color: #fff; 32 | } 33 | -------------------------------------------------------------------------------- /application/config/database.php: -------------------------------------------------------------------------------- 1 | '', 13 | 'hostname' => $hostname, 14 | 'username' => $username, 15 | 'password' => $password, 16 | 'database' => $database, 17 | 'dbdriver' => 'mysqli', 18 | 'dbprefix' => '', 19 | 'pconnect' => FALSE, 20 | 'db_debug' => (ENVIRONMENT !== 'production'), 21 | 'cache_on' => FALSE, 22 | 'cachedir' => '', 23 | 'char_set' => 'utf8', 24 | 'dbcollat' => 'utf8_general_ci', 25 | 'swap_pre' => '', 26 | 'encrypt' => FALSE, 27 | 'compress' => FALSE, 28 | 'stricton' => FALSE, 29 | 'failover' => array(), 30 | 'save_queries' => TRUE 31 | ); 32 | -------------------------------------------------------------------------------- /application/views/errors/cli/error_exception.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | An uncaught Exception was encountered 4 | 5 | Type: 6 | Message: 7 | Filename: getFile(), "\n"; ?> 8 | Line Number: getLine(); ?> 9 | 10 | 11 | 12 | Backtrace: 13 | getTrace() as $error): ?> 14 | 15 | File: 16 | Line: 17 | Function: 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /application/modules/income_category/views/add_update.php: -------------------------------------------------------------------------------- 1 |
" method="post" role="form" id="form" enctype="multipart/form-data" style="padding: 0px 30px"> 2 | income_category_id)){?>"> 3 |
4 | 5 | " > 6 |
7 |
8 | 9 | 12 |
-------------------------------------------------------------------------------- /application/modules/expense_category/views/add_update.php: -------------------------------------------------------------------------------- 1 |
" method="post" role="form" id="form" enctype="multipart/form-data" style="padding: 0px 30px"> 2 | expense_category_id)){?>"> 3 |
4 | 5 | " > 6 |
7 |
8 | 9 | 12 |
-------------------------------------------------------------------------------- /assets/ckeditor/plugins/a11yhelp/dialogs/lang/_translationstatus.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 2 | For licensing, see LICENSE.md or http://ckeditor.com/license 3 | 4 | cs.js Found: 30 Missing: 0 5 | cy.js Found: 30 Missing: 0 6 | da.js Found: 12 Missing: 18 7 | de.js Found: 30 Missing: 0 8 | el.js Found: 25 Missing: 5 9 | eo.js Found: 30 Missing: 0 10 | fa.js Found: 30 Missing: 0 11 | fi.js Found: 30 Missing: 0 12 | fr.js Found: 30 Missing: 0 13 | gu.js Found: 12 Missing: 18 14 | he.js Found: 30 Missing: 0 15 | it.js Found: 30 Missing: 0 16 | mk.js Found: 5 Missing: 25 17 | nb.js Found: 30 Missing: 0 18 | nl.js Found: 30 Missing: 0 19 | no.js Found: 30 Missing: 0 20 | pt-br.js Found: 30 Missing: 0 21 | ro.js Found: 6 Missing: 24 22 | tr.js Found: 30 Missing: 0 23 | ug.js Found: 27 Missing: 3 24 | vi.js Found: 6 Missing: 24 25 | zh-cn.js Found: 30 Missing: 0 26 | -------------------------------------------------------------------------------- /application/views/errors/html/error_php.php: -------------------------------------------------------------------------------- 1 | 4 | 5 |
6 | 7 |

A PHP Error was encountered

8 | 9 |

Severity:

10 |

Message:

11 |

Filename:

12 |

Line Number:

13 | 14 | 15 | 16 |

Backtrace:

17 | 18 | 19 | 20 | 21 |

22 | File:
23 | Line:
24 | Function: 25 |

26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 |
-------------------------------------------------------------------------------- /application/views/errors/html/error_exception.php: -------------------------------------------------------------------------------- 1 | 4 | 5 |
6 | 7 |

An uncaught Exception was encountered

8 | 9 |

Type:

10 |

Message:

11 |

Filename: getFile(); ?>

12 |

Line Number: getLine(); ?>

13 | 14 | 15 | 16 |

Backtrace:

17 | getTrace() as $error): ?> 18 | 19 | 20 | 21 |

22 | File:
23 | Line:
24 | Function: 25 |

26 | 27 | 28 | 29 | 30 | 31 | 32 |
-------------------------------------------------------------------------------- /assets/ckeditor/plugins/wsc/README.md: -------------------------------------------------------------------------------- 1 | CKEditor WebSpellChecker Plugin 2 | =============================== 3 | 4 | This plugin brings Web Spell Checker (WSC) into CKEditor. 5 | 6 | WSC is "installation-less", using the web-services of [WebSpellChecker.net](http://www.webspellchecker.net/). It's an out of the box solution. 7 | 8 | Installation 9 | ------------ 10 | 11 | 1. Clone/copy this repository contents in a new "plugins/wsc" folder in your CKEditor installation. 12 | 2. Enable the "wsc" plugin in the CKEditor configuration file (config.js): 13 | 14 | config.extraPlugins = 'wsc'; 15 | 16 | That's all. WSC will appear on the editor toolbar and will be ready to use. 17 | 18 | License 19 | ------- 20 | 21 | Licensed under the terms of any of the following licenses at your choice: [GPL](http://www.gnu.org/licenses/gpl.html), [LGPL](http://www.gnu.org/licenses/lgpl.html) and [MPL](http://www.mozilla.org/MPL/MPL-1.1.html). 22 | 23 | See LICENSE.md for more information. 24 | 25 | Developed in cooperation with [WebSpellChecker.net](http://www.webspellchecker.net/). 26 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/scayt/README.md: -------------------------------------------------------------------------------- 1 | CKEditor SCAYT Plugin 2 | ===================== 3 | 4 | This plugin brings Spell Check As You Type (SCAYT) into up to CKEditor 4+. 5 | 6 | SCAYT is a "installation-less", using the web-services of [WebSpellChecker.net](http://www.webspellchecker.net/). It's an out of the box solution. 7 | 8 | Installation 9 | ------------ 10 | 11 | 1. Clone/copy this repository contents in a new "plugins/scayt" folder in your CKEditor installation. 12 | 2. Enable the "scayt" plugin in the CKEditor configuration file (config.js): 13 | 14 | config.extraPlugins = 'scayt'; 15 | 16 | That's all. SCAYT will appear on the editor toolbar and will be ready to use. 17 | 18 | License 19 | ------- 20 | 21 | Licensed under the terms of any of the following licenses at your choice: [GPL](http://www.gnu.org/licenses/gpl.html), [LGPL](http://www.gnu.org/licenses/lgpl.html) and [MPL](http://www.mozilla.org/MPL/MPL-1.1.html). 22 | 23 | See LICENSE.md for more information. 24 | 25 | Developed in cooperation with [WebSpellChecker.net](http://www.webspellchecker.net/). 26 | -------------------------------------------------------------------------------- /assets/js/date.js: -------------------------------------------------------------------------------- 1 | /** File generated by Grunt -- do not modify 2 | * JQUERY-FORM-VALIDATOR 3 | * 4 | * @version 2.3.26 5 | * @website http://formvalidator.net/ 6 | * @author Victor Jonsson, http://victorjonsson.se 7 | * @license MIT 8 | */ 9 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof exports?module.exports=b(require("jquery")):b(jQuery)}(this,function(a){!function(a){a.formUtils.addValidator({name:"time",validatorFunction:function(a){if(null===a.match(/^(\d{2}):(\d{2})$/))return!1;var b=parseInt(a.split(":")[0],10),c=parseInt(a.split(":")[1],10);return!(b>23||c>59)},errorMessage:"",errorMessageKey:"badTime"}),a.formUtils.addValidator({name:"birthdate",validatorFunction:function(b,c,d){var e="yyyy-mm-dd";c.valAttr("format")?e=c.valAttr("format"):"undefined"!=typeof d.dateFormat&&(e=d.dateFormat);var f=a.formUtils.parseDate(b,e);if(!f)return!1;var g=new Date,h=g.getFullYear(),i=f[0],j=f[1],k=f[2];if(i===h){var l=g.getMonth()+1;if(j===l){var m=g.getDate();return m>=k}return l>j}return h>i&&i>h-124},errorMessage:"",errorMessageKey:"badDate"})}(a)}); -------------------------------------------------------------------------------- /assets/ckeditor/skins/bootstrapck/sample/css/bootstrapck-sample.css: -------------------------------------------------------------------------------- 1 | body{margin-top:1.0em;background-color:#fff;font-family:Helvetica,Arial,sans-serif;color:#404040}.container{margin:0 auto;width:900px;padding:0 0 20px}h1{font-size:40px;margin:40px 0 28px;padding:110px 0 9px;border-bottom:1px solid #ccc}h1 a,h1 a:visited,h1 a:focus,h1 a:hover{color:#404040;text-decoration:none}h1 span{font-size:18px;font-weight:normal;color:#bfbfbf}h1 span a,h1 span a:visited,h1 span a:focus,h1 span a:hover{color:#bfbfbf}h1 a{text-decoration:none}h2{font-size:23px;margin:10px 0 8px}h3{font-size:16px;margin:10px 0 8px}p{margin:0 0 30px;font-size:13px;line-height:18px}a,a:visited,a:focus{color:#0069d6;text-decoration:none}a:hover{color:#00438a;text-decoration:underline}.download{float:right}pre{background:#f5f5f5;color:#404040;padding:16px;border:1px solid rgba(0,0,0,0.05);border-radius:4px;box-shadow:0 1px 1px rgba(0,0,0,0.05) inset;margin:-20px 0 10px;line-height:200%}.twitter{margin:-20px 0 40px;color:#666}.twitter iframe{vertical-align:bottom;margin:0 0 0 5px}.footer{text-align:center;padding-top:20px;margin-top:60px;font-size:14px;color:#808080;border-top:1px solid #ccc}.footer a,.footer a:visited,.footer a:focus{color:#333}.footer a:hover{color:#000} -------------------------------------------------------------------------------- /assets/ckeditor/skins/bootstrapck/scss/config/_defaults.scss: -------------------------------------------------------------------------------- 1 | /* ========================================================================== 2 | Defaults 3 | 4 | This file is exclusively intended for setting up variables 5 | Never add styles directly to this file 6 | ========================================================================== */ 7 | 8 | // Border radius 9 | // ------------------------- 10 | 11 | $border-radius: 4px; 12 | 13 | 14 | // Forms 15 | // ------------------------- 16 | 17 | %input-style { 18 | background-color: #fff; 19 | outline: none; 20 | width: 100%; 21 | *width: 95%; 22 | height: 30px; 23 | padding: 4px 10px; 24 | border: 1px solid $hr-border; 25 | border-radius: $border-radius; 26 | -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075); 27 | box-shadow: inset 0 1px 1px rgba(0,0,0,.075); 28 | 29 | -moz-box-sizing: border-box; 30 | -webkit-box-sizing: border-box; 31 | box-sizing: border-box; 32 | &:focus { 33 | border-color: $form-blue; 34 | -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba($form-blue,.6); 35 | box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba($form-blue,.6); 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /application/views/include/menu.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
  • "> 4 | "> Expenses 5 |
  • 6 | 7 |
  • "> 8 | "> Income 9 |
  • 10 | 11 |
  • "> 12 | "> Expense Category 13 |
  • 14 | 15 |
  • "> 16 | "> Income Category 17 |
  • 18 | -------------------------------------------------------------------------------- /application/libraries/phpmailer/language/phpmailer.lang-zh.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'SMTP 錯誤:登錄失敗。'; 9 | $PHPMAILER_LANG['connect_host'] = 'SMTP 錯誤:無法連接到 SMTP 主機。'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP 錯誤:數據不被接受。'; 11 | //$PHPMAILER_LANG['empty_message'] = 'Message body empty'; 12 | $PHPMAILER_LANG['encoding'] = '未知編碼: '; 13 | $PHPMAILER_LANG['file_access'] = '無法訪問文件:'; 14 | $PHPMAILER_LANG['file_open'] = '文件錯誤:無法打開文件:'; 15 | $PHPMAILER_LANG['from_failed'] = '發送地址錯誤:'; 16 | $PHPMAILER_LANG['execute'] = '無法執行:'; 17 | $PHPMAILER_LANG['instantiate'] = '未知函數調用。'; 18 | //$PHPMAILER_LANG['invalid_address'] = 'Not sending, email address is invalid: '; 19 | $PHPMAILER_LANG['provide_address'] = '必須提供至少一個收件人地址。'; 20 | $PHPMAILER_LANG['mailer_not_supported'] = '發信客戶端不被支持。'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP 錯誤:收件人地址錯誤:'; 22 | //$PHPMAILER_LANG['signing'] = 'Signing Error: '; 23 | //$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() failed.'; 24 | //$PHPMAILER_LANG['smtp_error'] = 'SMTP server error: '; 25 | //$PHPMAILER_LANG['variable_set'] = 'Cannot set or reset variable: '; 26 | ?> 27 | -------------------------------------------------------------------------------- /application/libraries/phpmailer/language/phpmailer.lang-zh_cn.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'SMTP 错误:登录失败。'; 9 | $PHPMAILER_LANG['connect_host'] = 'SMTP 错误:无法连接到 SMTP 主机。'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP 错误:数据不被接受。'; 11 | //$P$PHPMAILER_LANG['empty_message'] = 'Message body empty'; 12 | $PHPMAILER_LANG['encoding'] = '未知编码: '; 13 | $PHPMAILER_LANG['execute'] = '无法执行:'; 14 | $PHPMAILER_LANG['file_access'] = '无法访问文件:'; 15 | $PHPMAILER_LANG['file_open'] = '文件错误:无法打开文件:'; 16 | $PHPMAILER_LANG['from_failed'] = '发送地址错误:'; 17 | $PHPMAILER_LANG['instantiate'] = '未知函数调用。'; 18 | //$PHPMAILER_LANG['invalid_address'] = 'Not sending, email address is invalid: '; 19 | $PHPMAILER_LANG['mailer_not_supported'] = '发信客户端不被支持。'; 20 | $PHPMAILER_LANG['provide_address'] = '必须提供至少一个收件人地址。'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP 错误:收件人地址错误:'; 22 | //$PHPMAILER_LANG['signing'] = 'Signing Error: '; 23 | //$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() failed.'; 24 | //$PHPMAILER_LANG['smtp_error'] = 'SMTP server error: '; 25 | //$PHPMAILER_LANG['variable_set'] = 'Cannot set or reset variable: '; 26 | ?> 27 | -------------------------------------------------------------------------------- /application/libraries/phpmailer/language/phpmailer.lang-ch.php: -------------------------------------------------------------------------------- 1 | 27 | -------------------------------------------------------------------------------- /assets/ckeditor/skins/bootstrapck/readme.md: -------------------------------------------------------------------------------- 1 | BootstrapCK Skin 2 | ==================== 3 | 4 | The BootstrapCK-Skin is a skin for [CKEditor4](http://ckeditor.com/) based on [Twitter Bootstrap3](http://getbootstrap.com/) styles. 5 | 6 | [Sass](http://sass-lang.com/) is used to rewrite the editor's styles and [Grunt](http://gruntjs.com/) to be able to watch, convert and minify the sass into css files. These files aren't really needed for the simple use of the skin, but handy if you want to make some adjustments to it. 7 | 8 | For more information about skins, please check the [CKEditor Skin SDK](http://docs.cksource.com/CKEditor_4.x/Skin_SDK) 9 | documentation. 10 | 11 | ## Installation 12 | 13 | **Just skin please** 14 | 15 | Add the whole bootstrapck folder to the skin folder.
    16 | In ckeditor.js and config.js change the skin name to "bootstrapck".
    17 | Done! 18 | 19 | **The whole skin - sass - grunt package** 20 | 21 | All the sass files are included in the bootstrapck folder, so first follow the 'just skin please'-steps
    22 | Now add the Gruntfile.js and the package.json to de ckeditor folder. 23 | 24 | npm install 25 | grunt build 26 | 27 | You can start tampering now. 28 | 29 | ## Demo 30 | 31 | http://kunstmaan.github.io/BootstrapCK4-Skin/ 32 | 33 | ### Previous version 34 | 35 | If you would like to get the Bootstrap2 skin for CKeditor3, [here](https://github.com/Kunstmaan/BootstrapCK-Skin)'s the previous version. 36 | -------------------------------------------------------------------------------- /application/modules/about/views/index.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
    4 | 5 |
    6 | 7 |
    8 |
    9 |

    About Us

    10 |
    11 |
    12 |
    13 |
    14 |
    15 |

    This project is build with Web Project Builder.

    16 |

    Web Project Builder allows you to generate PHP code of projects using simple user interface without knowledge of programming. This includes CRUD Generator, User Authentication, User Roles, Permission and much more.

    17 | 18 |

    Visit the site to download free php codeigniter scripts and for customization

    19 |

    URL: http://www.webprojectbuilder.com

    20 |
    21 |
    22 |
    23 |
    24 |
    25 | 26 |
    27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /application/views/errors/html/error_general.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | Error 8 | 57 | 58 | 59 |
    60 |

    61 | 62 |
    63 | 64 | -------------------------------------------------------------------------------- /application/views/errors/html/error_db.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | Database Error 8 | 57 | 58 | 59 |
    60 |

    61 | 62 |
    63 | 64 | -------------------------------------------------------------------------------- /application/views/errors/html/error_404.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | 404 Page Not Found 8 | 57 | 58 | 59 |
    60 |

    61 | 62 |
    63 | 64 | -------------------------------------------------------------------------------- /application/libraries/phpmailer/language/phpmailer.lang-ja.php: -------------------------------------------------------------------------------- 1 | 27 | -------------------------------------------------------------------------------- /assets/ckeditor/skins/bootstrapck/sample/js/analytics.js: -------------------------------------------------------------------------------- 1 | var _ga=_ga||{},_gaq=_gaq||[];_ga.trackSocial=function(a,c){_ga.trackFacebook(a,c);_ga.trackTwitter(a,c)}; 2 | _ga.trackFacebook=function(a,c){var d=_ga.buildTrackerName_(c);try{FB&&(FB.Event&&FB.Event.subscribe)&&(FB.Event.subscribe("edge.create",function(b){_gaq.push([d+"_trackSocial","facebook","like",b,a])}),FB.Event.subscribe("edge.remove",function(b){_gaq.push([d+"_trackSocial","facebook","unlike",b,a])}),FB.Event.subscribe("message.send",function(b){_gaq.push([d+"_trackSocial","facebook","send",b,a])}))}catch(e){}};_ga.buildTrackerName_=function(a){return a?a+".":""}; 3 | _ga.trackTwitter=function(a,c){var d=_ga.buildTrackerName_(c);try{twttr&&(twttr.events&&twttr.events.bind)&&twttr.events.bind("tweet",function(b){if(b){var c;b.target&&"IFRAME"==b.target.nodeName&&(c=_ga.extractParamFromUri_(b.target.src,"url"));_gaq.push([d+"_trackSocial","twitter","tweet",c,a])}})}catch(e){}};_ga.extractParamFromUri_=function(a,c){if(a){var a=a.split("#")[0],d=a.split("?");if(1!=d.length)for(var d=decodeURI(d[1]),c=c+"=",d=d.split("&"),e=0,b;b=d[e];++e)if(0===b.indexOf(c))return unescape(b.split("=")[1])}}; 4 | jQuery&&jQuery("a").click(function(){var a=jQuery(this).attr("href");null!=a&&(a.match(/^http/i)&&!a.match(document.domain)?_gaq.push(["_trackEvent","outgoing","click",a]):a.match(/\.(doc|pdf|xls|ppt|zip|txt|vsd|vxd|js|css|rar|exe|wma|mov|avi|wmv|mp3)$/i)?_gaq.push(["_trackEvent","download","click",a]):a.match(/^mailto:/i)&&_gaq.push(["_trackEvent","mailto","click",a]))}); -------------------------------------------------------------------------------- /assets/ckeditor/README.md: -------------------------------------------------------------------------------- 1 | CKEditor 4 2 | ========== 3 | 4 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 5 | http://ckeditor.com - See LICENSE.md for license information. 6 | 7 | CKEditor is a text editor to be used inside web pages. It's not a replacement 8 | for desktop text editors like Word or OpenOffice, but a component to be used as 9 | part of web applications and websites. 10 | 11 | ## Documentation 12 | 13 | The full editor documentation is available online at the following address: 14 | http://docs.ckeditor.com 15 | 16 | ## Installation 17 | 18 | Installing CKEditor is an easy task. Just follow these simple steps: 19 | 20 | 1. **Download** the latest version from the CKEditor website: 21 | http://ckeditor.com. You should have already completed this step, but be 22 | sure you have the very latest version. 23 | 2. **Extract** (decompress) the downloaded file into the root of your website. 24 | 25 | **Note:** CKEditor is by default installed in the `ckeditor` folder. You can 26 | place the files in whichever you want though. 27 | 28 | ## Checking Your Installation 29 | 30 | The editor comes with a few sample pages that can be used to verify that 31 | installation proceeded properly. Take a look at the `samples` directory. 32 | 33 | To test your installation, just call the following page at your website: 34 | 35 | http:////samples/index.html 36 | 37 | For example: 38 | 39 | http://www.example.com/ckeditor/samples/index.html 40 | -------------------------------------------------------------------------------- /assets/ckeditor/config.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.editorConfig = function( config ) { 7 | // Define changes to default configuration here. 8 | // For complete reference see: 9 | // http://docs.ckeditor.com/#!/api/CKEDITOR.config 10 | 11 | // The toolbar groups arrangement, optimized for two toolbar rows. 12 | config.toolbarGroups = [ 13 | { name: 'clipboard', groups: [ 'clipboard', 'undo' ] }, 14 | { name: 'editing', groups: [ 'find', 'selection', 'spellchecker' ] }, 15 | { name: 'links' }, 16 | { name: 'insert' }, 17 | { name: 'forms' }, 18 | { name: 'tools' }, 19 | { name: 'document', groups: [ 'mode', 'document', 'doctools' ] }, 20 | { name: 'others' }, 21 | '/', 22 | { name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ] }, 23 | { name: 'paragraph', groups: [ 'list', 'indent', 'blocks', 'align', 'bidi' ] }, 24 | { name: 'styles' }, 25 | { name: 'colors' }, 26 | { name: 'about' } 27 | ]; 28 | 29 | // Remove some buttons provided by the standard plugins, which are 30 | // not needed in the Standard(s) toolbar. 31 | config.removeButtons = 'Underline,Subscript,Superscript'; 32 | 33 | // Set the most common block elements. 34 | config.format_tags = 'p;h1;h2;h3;pre'; 35 | 36 | config.skin = 'bootstrapck'; 37 | 38 | // Simplify the dialog windows. 39 | config.removeDialogTabs = 'image:advanced;link:advanced'; 40 | }; 41 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/wsc/dialogs/wsc.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | html, body 7 | { 8 | background-color: transparent; 9 | margin: 0px; 10 | padding: 0px; 11 | } 12 | 13 | body 14 | { 15 | padding: 10px; 16 | } 17 | 18 | body, td, input, select, textarea 19 | { 20 | font-size: 11px; 21 | font-family: 'Microsoft Sans Serif' , Arial, Helvetica, Verdana; 22 | } 23 | 24 | .midtext 25 | { 26 | padding:0px; 27 | margin:10px; 28 | } 29 | 30 | .midtext p 31 | { 32 | padding:0px; 33 | margin:10px; 34 | } 35 | 36 | .Button 37 | { 38 | border: #737357 1px solid; 39 | color: #3b3b1f; 40 | background-color: #c7c78f; 41 | } 42 | 43 | .PopupTabArea 44 | { 45 | color: #737357; 46 | background-color: #e3e3c7; 47 | } 48 | 49 | .PopupTitleBorder 50 | { 51 | border-bottom: #d5d59d 1px solid; 52 | } 53 | .PopupTabEmptyArea 54 | { 55 | padding-left: 10px; 56 | border-bottom: #d5d59d 1px solid; 57 | } 58 | 59 | .PopupTab, .PopupTabSelected 60 | { 61 | border-right: #d5d59d 1px solid; 62 | border-top: #d5d59d 1px solid; 63 | border-left: #d5d59d 1px solid; 64 | padding: 3px 5px 3px 5px; 65 | color: #737357; 66 | } 67 | 68 | .PopupTab 69 | { 70 | margin-top: 1px; 71 | border-bottom: #d5d59d 1px solid; 72 | cursor: pointer; 73 | } 74 | 75 | .PopupTabSelected 76 | { 77 | font-weight: bold; 78 | cursor: default; 79 | padding-top: 4px; 80 | border-bottom: #f1f1e3 1px solid; 81 | background-color: #f1f1e3; 82 | } 83 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/wsc/LICENSE.md: -------------------------------------------------------------------------------- 1 | Software License Agreement 2 | ========================== 3 | 4 | **CKEditor WSC Plugin** 5 | Copyright © 2012, [CKSource](http://cksource.com) - Frederico Knabben. All rights reserved. 6 | 7 | Licensed under the terms of any of the following licenses at your choice: 8 | 9 | * GNU General Public License Version 2 or later (the "GPL"): 10 | http://www.gnu.org/licenses/gpl.html 11 | 12 | * GNU Lesser General Public License Version 2.1 or later (the "LGPL"): 13 | http://www.gnu.org/licenses/lgpl.html 14 | 15 | * Mozilla Public License Version 1.1 or later (the "MPL"): 16 | http://www.mozilla.org/MPL/MPL-1.1.html 17 | 18 | You are not required to, but if you want to explicitly declare the license you have chosen to be bound to when using, reproducing, modifying and distributing this software, just include a text file titled "legal.txt" in your version of this software, indicating your license choice. 19 | 20 | Sources of Intellectual Property Included in this plugin 21 | -------------------------------------------------------- 22 | 23 | Where not otherwise indicated, all plugin content is authored by CKSource engineers and consists of CKSource-owned intellectual property. In some specific instances, the plugin will incorporate work done by developers outside of CKSource with their express permission. 24 | 25 | Trademarks 26 | ---------- 27 | 28 | CKEditor is a trademark of CKSource - Frederico Knabben. All other brand and product names are trademarks, registered trademarks or service marks of their respective holders. 29 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/scayt/LICENSE.md: -------------------------------------------------------------------------------- 1 | Software License Agreement 2 | ========================== 3 | 4 | **CKEditor SCAYT Plugin** 5 | Copyright © 2012, [CKSource](http://cksource.com) - Frederico Knabben. All rights reserved. 6 | 7 | Licensed under the terms of any of the following licenses at your choice: 8 | 9 | * GNU General Public License Version 2 or later (the "GPL"): 10 | http://www.gnu.org/licenses/gpl.html 11 | 12 | * GNU Lesser General Public License Version 2.1 or later (the "LGPL"): 13 | http://www.gnu.org/licenses/lgpl.html 14 | 15 | * Mozilla Public License Version 1.1 or later (the "MPL"): 16 | http://www.mozilla.org/MPL/MPL-1.1.html 17 | 18 | You are not required to, but if you want to explicitly declare the license you have chosen to be bound to when using, reproducing, modifying and distributing this software, just include a text file titled "legal.txt" in your version of this software, indicating your license choice. 19 | 20 | Sources of Intellectual Property Included in this plugin 21 | -------------------------------------------------------- 22 | 23 | Where not otherwise indicated, all plugin content is authored by CKSource engineers and consists of CKSource-owned intellectual property. In some specific instances, the plugin will incorporate work done by developers outside of CKSource with their express permission. 24 | 25 | Trademarks 26 | ---------- 27 | 28 | CKEditor is a trademark of CKSource - Frederico Knabben. All other brand and product names are trademarks, registered trademarks or service marks of their respective holders. 29 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/scayt/dialogs/toolbar.css: -------------------------------------------------------------------------------- 1 | a 2 | { 3 | text-decoration:none; 4 | padding: 2px 4px 4px 6px; 5 | display : block; 6 | border-width: 1px; 7 | border-style: solid; 8 | margin : 0px; 9 | } 10 | 11 | a.cke_scayt_toogle:hover, 12 | a.cke_scayt_toogle:focus, 13 | a.cke_scayt_toogle:active 14 | { 15 | border-color: #316ac5; 16 | background-color: #dff1ff; 17 | color : #000; 18 | cursor: pointer; 19 | margin : 0px; 20 | } 21 | a.cke_scayt_toogle { 22 | color : #316ac5; 23 | border-color: #fff; 24 | } 25 | .scayt_enabled a.cke_scayt_item { 26 | color : #316ac5; 27 | border-color: #fff; 28 | margin : 0px; 29 | } 30 | .scayt_disabled a.cke_scayt_item { 31 | color : gray; 32 | border-color : #fff; 33 | } 34 | .scayt_enabled a.cke_scayt_item:hover, 35 | .scayt_enabled a.cke_scayt_item:focus, 36 | .scayt_enabled a.cke_scayt_item:active 37 | { 38 | border-color: #316ac5; 39 | background-color: #dff1ff; 40 | color : #000; 41 | cursor: pointer; 42 | } 43 | .scayt_disabled a.cke_scayt_item:hover, 44 | .scayt_disabled a.cke_scayt_item:focus, 45 | .scayt_disabled a.cke_scayt_item:active 46 | { 47 | border-color: gray; 48 | background-color: #dff1ff; 49 | color : gray; 50 | cursor: no-drop; 51 | } 52 | .cke_scayt_set_on, .cke_scayt_set_off 53 | { 54 | display: none; 55 | } 56 | .scayt_enabled .cke_scayt_set_on 57 | { 58 | display: none; 59 | } 60 | .scayt_disabled .cke_scayt_set_on 61 | { 62 | display: inline; 63 | } 64 | .scayt_disabled .cke_scayt_set_off 65 | { 66 | display: none; 67 | } 68 | .scayt_enabled .cke_scayt_set_off 69 | { 70 | display: inline; 71 | } 72 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/about/dialogs/about.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.dialog.add("about",function(a){var a=a.lang.about,b=CKEDITOR.getUrl(CKEDITOR.plugins.get("about").path+"dialogs/"+(CKEDITOR.env.hidpi?"hidpi/":"")+"logo_ckeditor.png");return{title:CKEDITOR.env.ie?a.dlgTitle:a.title,minWidth:390,minHeight:230,contents:[{id:"tab1",label:"",title:"",expand:!0,padding:0,elements:[{type:"html",html:'

    CKEditor '+CKEDITOR.version+" (revision "+CKEDITOR.revision+')
    http://ckeditor.com

    '+a.help.replace("$1",''+ 7 | a.userGuide+"")+"

    "+a.moreInfo+'
    http://ckeditor.com/about/license

    '+a.copy.replace("$1",'CKSource - Frederico Knabben')+"

    "}]}],buttons:[CKEDITOR.dialog.cancelButton]}}); -------------------------------------------------------------------------------- /assets/ckeditor/plugins/link/dialogs/anchor.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.dialog.add("anchor",function(c){function d(a,b){return a.createFakeElement(a.document.createElement("a",{attributes:b}),"cke_anchor","anchor")}return{title:c.lang.link.anchor.title,minWidth:300,minHeight:60,onOk:function(){var a=CKEDITOR.tools.trim(this.getValueOf("info","txtName")),a={id:a,name:a,"data-cke-saved-name":a};if(this._.selectedElement)this._.selectedElement.data("cke-realelement")?(a=d(c,a),a.replace(this._.selectedElement),CKEDITOR.env.ie&&c.getSelection().selectElement(a)): 6 | this._.selectedElement.setAttributes(a);else{var b=c.getSelection(),b=b&&b.getRanges()[0];b.collapsed?(a=d(c,a),b.insertNode(a)):(CKEDITOR.env.ie&&9>CKEDITOR.env.version&&(a["class"]="cke_anchor"),a=new CKEDITOR.style({element:"a",attributes:a}),a.type=CKEDITOR.STYLE_INLINE,c.applyStyle(a))}},onHide:function(){delete this._.selectedElement},onShow:function(){var a=c.getSelection(),b=a.getSelectedElement(),d=b&&b.data("cke-realelement"),e=d?CKEDITOR.plugins.link.tryRestoreFakeAnchor(c,b):CKEDITOR.plugins.link.getSelectedLink(c); 7 | e&&(this._.selectedElement=e,this.setValueOf("info","txtName",e.data("cke-saved-name")||""),!d&&a.selectElement(e),b&&(this._.selectedElement=b));this.getContentElement("info","txtName").focus()},contents:[{id:"info",label:c.lang.link.anchor.title,accessKey:"I",elements:[{type:"text",id:"txtName",label:c.lang.link.anchor.name,required:!0,validate:function(){return!this.getValue()?(alert(c.lang.link.anchor.errorName),!1):!0}}]}]}}); -------------------------------------------------------------------------------- /application/libraries/phpmailer/language/phpmailer.lang-no.php: -------------------------------------------------------------------------------- 1 | 26 | -------------------------------------------------------------------------------- /application/libraries/phpmailer/language/phpmailer.lang-cz.php: -------------------------------------------------------------------------------- 1 | 26 | -------------------------------------------------------------------------------- /application/libraries/phpmailer/language/phpmailer.lang-pl.php: -------------------------------------------------------------------------------- 1 | 26 | -------------------------------------------------------------------------------- /application/libraries/phpmailer/language/phpmailer.lang-se.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'SMTP fel: Kunde inte autentisera.'; 9 | $PHPMAILER_LANG['connect_host'] = 'SMTP fel: Kunde inte ansluta till SMTP-server.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP fel: Data accepterades inte.'; 11 | //$PHPMAILER_LANG['empty_message'] = 'Message body empty'; 12 | $PHPMAILER_LANG['encoding'] = 'Okänt encode-format: '; 13 | $PHPMAILER_LANG['execute'] = 'Kunde inte köra: '; 14 | $PHPMAILER_LANG['file_access'] = 'Ingen åtkomst till fil: '; 15 | $PHPMAILER_LANG['file_open'] = 'Fil fel: Kunde inte öppna fil: '; 16 | $PHPMAILER_LANG['from_failed'] = 'Följande avsändaradress är felaktig: '; 17 | $PHPMAILER_LANG['instantiate'] = 'Kunde inte initiera e-postfunktion.'; 18 | //$PHPMAILER_LANG['invalid_address'] = 'Not sending, email address is invalid: '; 19 | $PHPMAILER_LANG['provide_address'] = 'Du måste ange minst en mottagares e-postadress.'; 20 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer stöds inte.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP fel: Följande mottagare är felaktig: '; 22 | //$PHPMAILER_LANG['signing'] = 'Signing Error: '; 23 | //$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() failed.'; 24 | //$PHPMAILER_LANG['smtp_error'] = 'SMTP server error: '; 25 | //$PHPMAILER_LANG['variable_set'] = 'Cannot set or reset variable: '; 26 | ?> 27 | -------------------------------------------------------------------------------- /application/libraries/phpmailer/language/phpmailer.lang-hu.php: -------------------------------------------------------------------------------- 1 | 26 | -------------------------------------------------------------------------------- /application/libraries/phpmailer/language/phpmailer.lang-dk.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'SMTP fejl: Kunne ikke logge på.'; 9 | $PHPMAILER_LANG['connect_host'] = 'SMTP fejl: Kunne ikke tilslutte SMTP serveren.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP fejl: Data kunne ikke accepteres.'; 11 | //$PHPMAILER_LANG['empty_message'] = 'Message body empty'; 12 | $PHPMAILER_LANG['encoding'] = 'Ukendt encode-format: '; 13 | $PHPMAILER_LANG['execute'] = 'Kunne ikke køre: '; 14 | $PHPMAILER_LANG['file_access'] = 'Ingen adgang til fil: '; 15 | $PHPMAILER_LANG['file_open'] = 'Fil fejl: Kunne ikke åbne filen: '; 16 | $PHPMAILER_LANG['from_failed'] = 'Følgende afsenderadresse er forkert: '; 17 | $PHPMAILER_LANG['instantiate'] = 'Kunne ikke initialisere email funktionen.'; 18 | //$PHPMAILER_LANG['invalid_address'] = 'Not sending, email address is invalid: '; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer understøttes ikke.'; 20 | $PHPMAILER_LANG['provide_address'] = 'Du skal indtaste mindst en modtagers emailadresse.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP fejl: Følgende modtagere er forkerte: '; 22 | //$PHPMAILER_LANG['signing'] = 'Signing Error: '; 23 | //$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() failed.'; 24 | //$PHPMAILER_LANG['smtp_error'] = 'SMTP server error: '; 25 | //$PHPMAILER_LANG['variable_set'] = 'Cannot set or reset variable: '; 26 | ?> 27 | -------------------------------------------------------------------------------- /application/modules/income/views/add_update.php: -------------------------------------------------------------------------------- 1 |
    " method="post" role="form" id="form" enctype="multipart/form-data" style="padding: 0px 30px"> 2 | income_id)){?>"> 3 |
    4 | 5 | date)):date("Y-m-d",strtotime("now"));?>" > 6 |
    7 |
    8 | 9 | " > 10 |
    11 |
    12 | 13 | " > 14 |
    15 |
    16 | 17 | category) ?$data->category : "");?> 18 |
    19 |
    20 | 21 | 24 |
    -------------------------------------------------------------------------------- /application/libraries/phpmailer/language/phpmailer.lang-tr.php: -------------------------------------------------------------------------------- 1 | 28 | -------------------------------------------------------------------------------- /assets/ckeditor/skins/bootstrapck/scss/browser-specific/ie7/dialog_ie7.scss: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | /* 7 | dialog_ie7.css 8 | =============== 9 | 10 | This file contains styles to used by Internet Explorer 7 only. 11 | */ 12 | 13 | /* Base it on dialog_ie.css, overriding it with styles defined in this file. */ 14 | @import "../../dialog/dialog"; 15 | 16 | .cke_dialog_title 17 | { 18 | /* gradient fix */ 19 | zoom: 1; 20 | } 21 | 22 | .cke_dialog_footer 23 | { 24 | /* IE7 ignores footer's outline. Use border instead. */ 25 | border-top: 1px solid #bfbfbf; 26 | } 27 | 28 | /* IE7 needs position static #6806 */ 29 | .cke_dialog_footer_buttons 30 | { 31 | position: static; 32 | } 33 | 34 | /* IE7 crops the bottom pixels of footer buttons (#9491) */ 35 | .cke_dialog_footer_buttons a.cke_dialog_ui_button 36 | { 37 | vertical-align: top; 38 | } 39 | 40 | /* IE7 margin loose on float. */ 41 | .cke_dialog .cke_resizer_ltr 42 | { 43 | padding-left: 4px; 44 | } 45 | .cke_dialog .cke_resizer_rtl 46 | { 47 | padding-right: 4px; 48 | } 49 | 50 | /* IE7 doesn't support box-sizing and therefore we cannot 51 | have sexy inputs which go well with the layout. */ 52 | .cke_dialog_ui_input_text, 53 | .cke_dialog_ui_input_password, 54 | .cke_dialog_ui_input_textarea, 55 | .cke_dialog_ui_input_select 56 | { 57 | padding: 0 !important; 58 | } 59 | 60 | /* Predefined border to avoid visual size change impact. */ 61 | .cke_dialog_ui_checkbox_input, 62 | .cke_dialog_ui_ratio_input, 63 | .cke_btn_reset, 64 | .cke_btn_locked, 65 | .cke_btn_unlocked 66 | { 67 | border: 1px solid transparent !important; 68 | } 69 | -------------------------------------------------------------------------------- /assets/ckeditor/skins/bootstrapck/scss/config/_colors.scss: -------------------------------------------------------------------------------- 1 | /* ========================================================================== 2 | Colors 3 | 4 | This file is exclusively intended for setting up variables 5 | Never add styles directly to this file 6 | ========================================================================== */ 7 | 8 | // Grays 9 | // ------------------------- 10 | 11 | $gray-darker: #333; 12 | $gray-dark: #555; 13 | $gray: #aaa; 14 | $gray-light: #ddd; 15 | $gray-lighter: #eee; 16 | 17 | // Primary 18 | // ------------------------- 19 | $primary: #428bca; 20 | $primary-light: #92bce0; 21 | $primary-lighter: #e1edf7; 22 | 23 | // Forms 24 | // ------------------------- 25 | $form-blue: #66afe9; 26 | 27 | // Blues 28 | // ------------------------- 29 | $blue-dark: #2274c9; 30 | $blue-dark-hover: #1e68b4; 31 | $blue: #3F8EDF; 32 | $blue-hover: #2981db; 33 | 34 | // States 35 | // ------------------------- 36 | 37 | $success: $blue; 38 | $success-hover: $blue-hover; 39 | $success-border: $blue-dark; 40 | $success-border-hover: $blue-dark-hover; 41 | 42 | $warning: #f0ad4e; 43 | $danger: #d9534f; 44 | $info: #5bc0de; 45 | 46 | // Scaffolding 47 | // ------------------------- 48 | 49 | $body-bg: #fff; 50 | $text-color: $gray-darker; 51 | 52 | // Links 53 | // ------------------------- 54 | 55 | $link-color: $primary; 56 | $link-hover-color: darken($link-color, 15%); 57 | 58 | // Hr border color 59 | // ------------------------- 60 | 61 | $hr-border: $gray-light; 62 | -------------------------------------------------------------------------------- /application/libraries/phpmailer/language/phpmailer.lang-es.php: -------------------------------------------------------------------------------- 1 | 27 | -------------------------------------------------------------------------------- /application/libraries/phpmailer/language/phpmailer.lang-fr.php: -------------------------------------------------------------------------------- 1 | 26 | -------------------------------------------------------------------------------- /application/libraries/phpmailer/language/phpmailer.lang-sk.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'SMTP Error: Chyba autentifikácie.'; 9 | $PHPMAILER_LANG['connect_host'] = 'SMTP Error: Nebolo možné nadviazať spojenie so SMTP serverom.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP Error: Dáta neboli prijaté'; 11 | $PHPMAILER_LANG['empty_message'] = 'Prázdne telo správy.'; 12 | $PHPMAILER_LANG['encoding'] = 'Neznáme kódovanie: '; 13 | $PHPMAILER_LANG['execute'] = 'Nedá sa vykonať: '; 14 | $PHPMAILER_LANG['file_access'] = 'Súbor nebol nájdený: '; 15 | $PHPMAILER_LANG['file_open'] = 'File Error: Súbor sa otvoriť pre čítanie: '; 16 | $PHPMAILER_LANG['from_failed'] = 'Následujúca adresa From je nesprávna: '; 17 | $PHPMAILER_LANG['instantiate'] = 'Nedá sa vytvoriť inštancia emailovej funkcie.'; 18 | $PHPMAILER_LANG['invalid_address'] = 'Neodoslané, emailová adresa je nesprávna: '; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' emailový klient nieje podporovaný.'; 20 | $PHPMAILER_LANG['provide_address'] = 'Musíte zadať aspoň jednu emailovú adresu príjemcu.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP Error: Adresy príjemcov niesu správne '; 22 | $PHPMAILER_LANG['signing'] = 'Chyba prihlasovania: '; 23 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() zlyhalo.'; 24 | $PHPMAILER_LANG['smtp_error'] = 'SMTP chyba serveru: '; 25 | $PHPMAILER_LANG['variable_set'] = 'Nemožno nastaviť alebo resetovať premennú: '; 26 | ?> 27 | -------------------------------------------------------------------------------- /application/libraries/phpmailer/language/phpmailer.lang-ar.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'SMTP Error: لم نستطع تأكيد الهوية.'; 9 | $PHPMAILER_LANG['connect_host'] = 'SMTP Error: لم نستطع الاتصال بمخدم SMTP.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP Error: لم يتم قبول المعلومات .'; 11 | //$PHPMAILER_LANG['empty_message'] = 'Message body empty'; 12 | $PHPMAILER_LANG['encoding'] = 'ترميز غير معروف: '; 13 | $PHPMAILER_LANG['execute'] = 'لم أستطع تنفيذ : '; 14 | $PHPMAILER_LANG['file_access'] = 'لم نستطع الوصول للملف: '; 15 | $PHPMAILER_LANG['file_open'] = 'File Error: لم نستطع فتح الملف: '; 16 | $PHPMAILER_LANG['from_failed'] = 'البريد التالي لم نستطع ارسال البريد له : '; 17 | $PHPMAILER_LANG['instantiate'] = 'لم نستطع توفير خدمة البريد.'; 18 | //$PHPMAILER_LANG['invalid_address'] = 'Not sending, email address is invalid: '; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer غير مدعوم.'; 20 | //$PHPMAILER_LANG['provide_address'] = 'You must provide at least one recipient email address.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP Error: الأخطاء التالية ' . 22 | 'فشل في الارسال لكل من : '; 23 | $PHPMAILER_LANG['signing'] = 'خطأ في التوقيع: '; 24 | //$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() failed.'; 25 | //$PHPMAILER_LANG['smtp_error'] = 'SMTP server error: '; 26 | //$PHPMAILER_LANG['variable_set'] = 'Cannot set or reset variable: '; 27 | ?> 28 | -------------------------------------------------------------------------------- /application/libraries/phpmailer/language/phpmailer.lang-ca.php: -------------------------------------------------------------------------------- 1 | 27 | -------------------------------------------------------------------------------- /application/modules/user/views/forget_password.php: -------------------------------------------------------------------------------- 1 | 2 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /application/libraries/phpmailer/language/phpmailer.lang-et.php: -------------------------------------------------------------------------------- 1 | 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'SMTP Viga: Autoriseerimise viga.'; 10 | $PHPMAILER_LANG['connect_host'] = 'SMTP Viga: Ei õnnestunud luua ühendust SMTP serveriga.'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP Viga: Vigased andmed.'; 12 | $PHPMAILER_LANG['empty_message'] = 'Tühi kirja sisu'; 13 | $PHPMAILER_LANG["encoding"] = 'Tundmatu kodeering: '; 14 | $PHPMAILER_LANG['execute'] = 'Tegevus ebaõnnestus: '; 15 | $PHPMAILER_LANG['file_access'] = 'Pole piisavalt õiguseid järgneva faili avamiseks: '; 16 | $PHPMAILER_LANG['file_open'] = 'Faili Viga: Faili avamine ebaõnnestus: '; 17 | $PHPMAILER_LANG['from_failed'] = 'Järgnev saatja e-posti aadress on vigane: '; 18 | $PHPMAILER_LANG['instantiate'] = 'mail funktiooni käivitamine ebaõnnestus.'; 19 | $PHPMAILER_LANG['invalid_address'] = 'Saatmine peatatud, e-posti address vigane: '; 20 | $PHPMAILER_LANG['provide_address'] = 'Te peate määrama vähemalt ühe saaja e-posti aadressi.'; 21 | $PHPMAILER_LANG['mailer_not_supported'] = ' maileri tugi puudub.'; 22 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP Viga: Järgnevate saajate e-posti aadressid on vigased: '; 23 | $PHPMAILER_LANG["signing"] = 'Viga allkirjastamisel: '; 24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() ebaõnnestus.'; 25 | $PHPMAILER_LANG['smtp_error'] = 'SMTP serveri viga: '; 26 | $PHPMAILER_LANG['variable_set'] = 'Ei õnnestunud määrata või lähtestada muutujat: '; 27 | -------------------------------------------------------------------------------- /application/modules/user/views/login.php: -------------------------------------------------------------------------------- 1 | 2 | 38 | 39 | -------------------------------------------------------------------------------- /application/libraries/phpmailer/language/phpmailer.lang-ru.php: -------------------------------------------------------------------------------- 1 | 5 | */ 6 | 7 | $PHPMAILER_LANG['authenticate'] = 'Ошибка SMTP: ошибка авторизации.'; 8 | $PHPMAILER_LANG['connect_host'] = 'Ошибка SMTP: не удается подключиться к серверу SMTP.'; 9 | $PHPMAILER_LANG['data_not_accepted'] = 'Ошибка SMTP: данные не приняты.'; 10 | $PHPMAILER_LANG['encoding'] = 'Неизвестный вид кодировки: '; 11 | $PHPMAILER_LANG['execute'] = 'Невозможно выполнить команду: '; 12 | $PHPMAILER_LANG['file_access'] = 'Нет доступа к файлу: '; 13 | $PHPMAILER_LANG['file_open'] = 'Файловая ошибка: не удается открыть файл: '; 14 | $PHPMAILER_LANG['from_failed'] = 'Неверный адрес отправителя: '; 15 | $PHPMAILER_LANG['instantiate'] = 'Невозможно запустить функцию mail.'; 16 | $PHPMAILER_LANG['provide_address'] = 'Пожалуйста, введите хотя бы один адрес e-mail получателя.'; 17 | $PHPMAILER_LANG['mailer_not_supported'] = ' - почтовый сервер не поддерживается.'; 18 | $PHPMAILER_LANG['recipients_failed'] = 'Ошибка SMTP: отправка по следующим адресам получателей не удалась: '; 19 | $PHPMAILER_LANG['empty_message'] = 'Пустое тело сообщения'; 20 | $PHPMAILER_LANG['invalid_address'] = 'Не отослано, неправильный формат email адреса: '; 21 | $PHPMAILER_LANG['signing'] = 'Ошибка подписывания: '; 22 | $PHPMAILER_LANG['smtp_connect_failed'] = 'Ошибка соединения с SMTP-сервером'; 23 | $PHPMAILER_LANG['smtp_error'] = 'Ошибка SMTP-сервера: '; 24 | $PHPMAILER_LANG['variable_set'] = 'Невозможно установить или переустановить переменную: '; 25 | 26 | ?> 27 | -------------------------------------------------------------------------------- /application/libraries/phpmailer/language/phpmailer.lang-ro.php: -------------------------------------------------------------------------------- 1 | 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'Eroare SMTP: Nu a functionat autentificarea.'; 10 | $PHPMAILER_LANG['connect_host'] = 'Eroare SMTP: Nu m-am putut conecta la adresa SMTP.'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'Eroare SMTP: Continutul mailului nu a fost acceptat.'; 12 | //$PHPMAILER_LANG['empty_message'] = 'Message body empty'; 13 | $PHPMAILER_LANG['encoding'] = 'Encodare necunoscuta: '; 14 | $PHPMAILER_LANG['execute'] = 'Nu pot executa: '; 15 | $PHPMAILER_LANG['file_access'] = 'Nu pot accesa fisierul: '; 16 | $PHPMAILER_LANG['file_open'] = 'Eroare de fisier: Nu pot deschide fisierul: '; 17 | $PHPMAILER_LANG['from_failed'] = 'Urmatoarele adrese From au dat eroare: '; 18 | $PHPMAILER_LANG['instantiate'] = 'Nu am putut instantia functia mail.'; 19 | //$PHPMAILER_LANG['invalid_address'] = 'Not sending, email address is invalid: '; 20 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer nu este suportat.'; 21 | $PHPMAILER_LANG['provide_address'] = 'Trebuie sa adaugati cel putin un recipient (adresa de mail).'; 22 | $PHPMAILER_LANG['recipients_failed'] = 'Eroare SMTP: Urmatoarele adrese de mail au dat eroare: '; 23 | //$PHPMAILER_LANG['signing'] = 'Signing Error: '; 24 | //$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() failed.'; 25 | //$PHPMAILER_LANG['smtp_error'] = 'SMTP server error: '; 26 | //$PHPMAILER_LANG['variable_set'] = 'Cannot set or reset variable: '; 27 | ?> 28 | -------------------------------------------------------------------------------- /application/libraries/phpmailer/language/phpmailer.lang-fo.php: -------------------------------------------------------------------------------- 1 | 28 | -------------------------------------------------------------------------------- /application/libraries/phpmailer/language/phpmailer.lang-fi.php: -------------------------------------------------------------------------------- 1 | 28 | -------------------------------------------------------------------------------- /application/libraries/phpmailer/language/phpmailer.lang-br.php: -------------------------------------------------------------------------------- 1 | 27 | -------------------------------------------------------------------------------- /application/libraries/phpmailer/language/phpmailer.lang-it.php: -------------------------------------------------------------------------------- 1 | 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'SMTP Error: Impossibile autenticarsi.'; 10 | $PHPMAILER_LANG['connect_host'] = 'SMTP Error: Impossibile connettersi all\'host SMTP.'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP Error: Data non accettati dal server.'; 12 | //$PHPMAILER_LANG['empty_message'] = 'Message body empty'; 13 | $PHPMAILER_LANG['encoding'] = 'Encoding set dei caratteri sconosciuto: '; 14 | $PHPMAILER_LANG['execute'] = 'Impossibile eseguire l\'operazione: '; 15 | $PHPMAILER_LANG['file_access'] = 'Impossibile accedere al file: '; 16 | $PHPMAILER_LANG['file_open'] = 'File Error: Impossibile aprire il file: '; 17 | $PHPMAILER_LANG['from_failed'] = 'I seguenti indirizzi mittenti hanno generato errore: '; 18 | $PHPMAILER_LANG['instantiate'] = 'Impossibile istanziare la funzione mail'; 19 | //$PHPMAILER_LANG['invalid_address'] = 'Not sending, email address is invalid: '; 20 | $PHPMAILER_LANG['provide_address'] = 'Deve essere fornito almeno un indirizzo ricevente'; 21 | $PHPMAILER_LANG['mailer_not_supported'] = 'Mailer non supportato'; 22 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP Error: I seguenti indirizzi destinatari hanno generato errore: '; 23 | //$PHPMAILER_LANG['signing'] = 'Signing Error: '; 24 | //$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() failed.'; 25 | //$PHPMAILER_LANG['smtp_error'] = 'SMTP server error: '; 26 | //$PHPMAILER_LANG['variable_set'] = 'Cannot set or reset variable: '; 27 | ?> 28 | -------------------------------------------------------------------------------- /application/modules/templates/models/Templates_model.php: -------------------------------------------------------------------------------- 1 | load->database(); 9 | } 10 | 11 | /** 12 | * This function is used to get specific by id template record from database 13 | * @param: $id - it is id of template 14 | */ 15 | public function get_specific_template($id='') { 16 | $this->db->select('*'); 17 | $this->db->from('templates'); 18 | $this->db->where('id' , $id); 19 | $query = $this->db->get(); 20 | return $result = $query->row(); 21 | } 22 | 23 | /** 24 | * This function is used to get all record from templates table 25 | */ 26 | public function get_templates() { 27 | $this->db->select('*'); 28 | $this->db->from('templates'); 29 | $query = $this->db->get(); 30 | return $result = $query->result(); 31 | } 32 | 33 | /** 34 | * This function is used to insert row in table 35 | * @param: $table - table name in which you want to insert record 36 | * @param: $data - data array 37 | */ 38 | public function insertRow($table, $data){ 39 | $this->db->insert($table, $data); 40 | return $this->db->insert_id(); 41 | } 42 | 43 | /** 44 | * This function is used to update data in specific table 45 | * @param : $table - table name in which you want to update record 46 | * @param : $col - field name for where clause 47 | * @param : $colVal - field value for where clause 48 | * @param : $data - data array 49 | */ 50 | public function updateRow($table, $col, $colVal, $data) { 51 | $this->db->where($col,$colVal); 52 | $this->db->update($table,$data); 53 | return true; 54 | } 55 | } 56 | ?> -------------------------------------------------------------------------------- /assets/css/blue.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Square skin, blue 2 | ----------------------------------- */ 3 | .icheckbox_square-blue, 4 | .iradio_square-blue { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 22px; 11 | height: 22px; 12 | background: url(blue.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_square-blue { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_square-blue.hover { 21 | background-position: -24px 0; 22 | } 23 | .icheckbox_square-blue.checked { 24 | background-position: -48px 0; 25 | } 26 | .icheckbox_square-blue.disabled { 27 | background-position: -72px 0; 28 | cursor: default; 29 | } 30 | .icheckbox_square-blue.checked.disabled { 31 | background-position: -96px 0; 32 | } 33 | 34 | .iradio_square-blue { 35 | background-position: -120px 0; 36 | } 37 | .iradio_square-blue.hover { 38 | background-position: -144px 0; 39 | } 40 | .iradio_square-blue.checked { 41 | background-position: -168px 0; 42 | } 43 | .iradio_square-blue.disabled { 44 | background-position: -192px 0; 45 | cursor: default; 46 | } 47 | .iradio_square-blue.checked.disabled { 48 | background-position: -216px 0; 49 | } 50 | 51 | /* Retina support */ 52 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 53 | only screen and (-moz-min-device-pixel-ratio: 1.5), 54 | only screen and (-o-min-device-pixel-ratio: 3/2), 55 | only screen and (min-device-pixel-ratio: 1.5) { 56 | .icheckbox_square-blue, 57 | .iradio_square-blue { 58 | background-image: url(blue@2x.png); 59 | -webkit-background-size: 240px 24px; 60 | background-size: 240px 24px; 61 | } 62 | } -------------------------------------------------------------------------------- /application/libraries/phpmailer/language/phpmailer.lang-de.php: -------------------------------------------------------------------------------- 1 | 26 | -------------------------------------------------------------------------------- /application/modules/setting/models/Setting_model.php: -------------------------------------------------------------------------------- 1 | load->database(); 9 | } 10 | 11 | 12 | /** 13 | * This function is used to get settings 14 | */ 15 | public function get_setting() { 16 | return $this->db->get('setting')->result(); 17 | } 18 | 19 | /** 20 | * This function is used add user type 21 | */ 22 | public function add_user_type() { 23 | $rolesName = isset($_REQUEST['rolesName'])?$_REQUEST['rolesName']:''; 24 | $this->db->where('user_type', $rolesName); 25 | $result = $this->db->get('permission')->row(); 26 | if(!empty($result)) { 27 | return 'This User Type('.$result->user_type.') is alredy exist, In this Project Please enter Another name'; 28 | } else { 29 | return $this->insertRow('permission', array('user_type' => $rolesName)); 30 | } 31 | } 32 | 33 | /** 34 | * This function is used to insert data in table 35 | * @param : $table - table name in which you want to insert record 36 | * @param : $data - data array 37 | */ 38 | public function insertRow($table, $data){ 39 | $this->db->insert($table, $data); 40 | return $this->db->insert_id(); 41 | } 42 | 43 | /** 44 | * This function is used to update data in specific table 45 | * @param : $table - table name in which you want to update record 46 | * @param : $col - field name for where clause 47 | * @param : $colVal - field value for where clause 48 | * @param : $data - data array 49 | */ 50 | public function updateRow($table, $col, $colVal, $data) { 51 | $this->db->where($col,$colVal); 52 | $this->db->update($table,$data); 53 | return true; 54 | } 55 | 56 | }?> -------------------------------------------------------------------------------- /assets/ckeditor/plugins/wsc/dialogs/ciframe.html: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 10 | 64 | 65 |

    66 | 67 | -------------------------------------------------------------------------------- /assets/ckeditor/skins/bootstrapck/scss/browser-specific/ie/dialog_ie.scss: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | /* 7 | dialog_ie.css 8 | =============== 9 | 10 | This file contains styles to used by all versions of Internet Explorer only. 11 | */ 12 | 13 | /* Base it on dialog.css, overriding it with styles defined in this file. */ 14 | @import "../../dialog/dialog"; 15 | 16 | /* IE doesn't leave enough padding in text input for cursor to blink in RTL. (#6087) */ 17 | .cke_rtl input.cke_dialog_ui_input_text, 18 | .cke_rtl input.cke_dialog_ui_input_password 19 | { 20 | padding-right: 2px; 21 | } 22 | /* Compensate the padding added above on container. */ 23 | .cke_rtl div.cke_dialog_ui_input_text, 24 | .cke_rtl div.cke_dialog_ui_input_password 25 | { 26 | padding-left: 2px; 27 | } 28 | .cke_rtl div.cke_dialog_ui_input_text { 29 | padding-right: 1px; 30 | } 31 | 32 | .cke_rtl .cke_dialog_ui_vbox_child, 33 | .cke_rtl .cke_dialog_ui_hbox_child, 34 | .cke_rtl .cke_dialog_ui_hbox_first, 35 | .cke_rtl .cke_dialog_ui_hbox_last 36 | { 37 | padding-right: 2px !important; 38 | } 39 | 40 | 41 | /* Disable filters for HC mode. */ 42 | .cke_hc .cke_dialog_title, 43 | .cke_hc .cke_dialog_footer, 44 | .cke_hc a.cke_dialog_tab, 45 | .cke_hc a.cke_dialog_ui_button, 46 | .cke_hc a.cke_dialog_ui_button:hover, 47 | .cke_hc a.cke_dialog_ui_button_ok, 48 | .cke_hc a.cke_dialog_ui_button_ok:hover 49 | { 50 | filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); 51 | } 52 | 53 | /* Remove border from dialog field wrappers in HC 54 | to avoid double borders. */ 55 | .cke_hc div.cke_dialog_ui_input_text, 56 | .cke_hc div.cke_dialog_ui_input_password, 57 | .cke_hc div.cke_dialog_ui_input_textarea, 58 | .cke_hc div.cke_dialog_ui_input_select, 59 | .cke_hc div.cke_dialog_ui_input_file 60 | { 61 | border: 0; 62 | } 63 | -------------------------------------------------------------------------------- /application/libraries/Send_mail.php: -------------------------------------------------------------------------------- 1 | isSMTP(); 28 | $mail->SMTPDebug = 1; 29 | $mail->Debugoutput = 'text'; 30 | $mail->Host = $HOST; 31 | $mail->Port = $PORT; 32 | $mail->SMTPSecure = $SMTP_SECURE; 33 | $mail->SMTPAuth = true; 34 | $mail->Username = $SMTP_EMAIL; 35 | $mail->Password = $SMTP_PASSWORD; 36 | $mail->setFrom($SMTP_EMAIL, $EmailFromName); 37 | $mail->addReplyTo($SMTP_EMAIL, ''); 38 | $mail->addAddress("$email"); 39 | $mail->Subject = $sub; 40 | $mail->msgHTML($body); 41 | $mail->AltBody = 'This is a confirmation message '; 42 | if (!$mail->send()) { 43 | return "Mailer Error: " . $mail->ErrorInfo; 44 | } else { 45 | return true; 46 | } 47 | } 48 | } 49 | ?> -------------------------------------------------------------------------------- /assets/ckeditor/skins/bootstrapck/scss/browser-specific/iequirks/editor_iequirks.scss: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | /* 7 | editor_iequirks.css 8 | =============== 9 | 10 | This file contains styles to used by all versions of Internet Explorer 11 | in Quirks mode only. 12 | */ 13 | 14 | /* Base it on editor_ie.css, overriding it with styles defined in this file. */ 15 | @import "../../components/editor"; 16 | 17 | .cke_top, 18 | .cke_contents, 19 | .cke_bottom 20 | { 21 | width: 100%; /* hasLayout = true */ 22 | } 23 | 24 | .cke_button_arrow 25 | { 26 | font-size: 0; /* Set minimal font size, so arrow won't be streched by the text that doesn't exist. */ 27 | } 28 | 29 | /* Bring back toolbar buttons in RTL. */ 30 | 31 | .cke_rtl .cke_toolgroup, 32 | .cke_rtl .cke_toolbar_separator, 33 | .cke_rtl .cke_button, 34 | .cke_rtl .cke_button *, 35 | .cke_rtl .cke_combo, 36 | .cke_rtl .cke_combo *, 37 | .cke_rtl .cke_path_item, 38 | .cke_rtl .cke_path_item *, 39 | .cke_rtl .cke_path_empty 40 | { 41 | float: none; 42 | } 43 | 44 | .cke_rtl .cke_toolgroup, 45 | .cke_rtl .cke_toolbar_separator, 46 | .cke_rtl .cke_combo_button, 47 | .cke_rtl .cke_combo_button *, 48 | .cke_rtl .cke_button, 49 | .cke_rtl .cke_button_icon, 50 | { 51 | display: inline-block; 52 | vertical-align: top; 53 | } 54 | 55 | /* Otherwise formatting toolbar breaks when editing a mixed content (#9893). */ 56 | .cke_rtl .cke_button_icon 57 | { 58 | float: none; 59 | } 60 | 61 | .cke_resizer 62 | { 63 | width: 10px; 64 | } 65 | 66 | .cke_source 67 | { 68 | white-space: normal; 69 | } 70 | 71 | .cke_bottom 72 | { 73 | position: static; /* Without this bottom space doesn't move when resizing editor. */ 74 | } 75 | 76 | .cke_colorbox 77 | { 78 | font-size: 0; /* Set minimal font size, so button won't be streched by the text that doesn't exist. */ 79 | } 80 | -------------------------------------------------------------------------------- /application/modules/income_category/views/tableData.php: -------------------------------------------------------------------------------- 1 | $value) {?> 6 | 7 | category_name; ?> 8 | $tab_id.'" title="Edit">'; 11 | }else if(CheckPermission("income_category", "own_update") && (CheckPermission("income_category", "all_update")!=true)){ 12 | $user_id =getRowByTableColomId("income_category",$value->$tab_id,$tab_id,"user_id"); 13 | if($user_id==$this->user_id){ 14 | echo ''; 15 | } 16 | } 17 | 18 | if(CheckPermission("income_category", "all_delete")){ 19 | echo '';} 20 | else if(CheckPermission("income_category", "own_delete") && (CheckPermission("income_category", "all_delete")!=true)){ 21 | $user_id =getRowByTableColomId("income_category",$value->$tab_id,$tab_id,"user_id"); 22 | if($user_id==$this->user_id){ 23 | echo ''; 24 | } 25 | } ?> 26 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /application/modules/expense_category/views/tableData.php: -------------------------------------------------------------------------------- 1 | $value) {?> 6 | 7 | category_name; ?> 8 | $tab_id.'" title="Edit">'; 11 | }else if(CheckPermission("expense_category", "own_update") && (CheckPermission("expense_category", "all_update")!=true)){ 12 | $user_id =getRowByTableColomId("expense_category",$value->$tab_id,$tab_id,"user_id"); 13 | if($user_id==$this->user_id){ 14 | echo ''; 15 | } 16 | } 17 | 18 | if(CheckPermission("expense_category", "all_delete")){ 19 | echo '';} 20 | else if(CheckPermission("expense_category", "own_delete") && (CheckPermission("expense_category", "all_delete")!=true)){ 21 | $user_id =getRowByTableColomId("expense_category",$value->$tab_id,$tab_id,"user_id"); 22 | if($user_id==$this->user_id){ 23 | echo ''; 24 | } 25 | } ?> 26 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /assets/ckeditor/skins/bootstrapck/scss/browser-specific/ie/editor_ie.scss: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | /* 7 | editor_ie.css 8 | =============== 9 | 10 | This file contains styles to used by all versions of Internet Explorer only. 11 | */ 12 | 13 | /* Base it on editor.css, overriding it with styles defined in this file. */ 14 | @import "../../components/editor"; 15 | 16 | a.cke_button_disabled, 17 | 18 | /* Those two are to overwrite the gradient filter since we cannot have both of them. */ 19 | a.cke_button_disabled:hover, 20 | a.cke_button_disabled:focus, 21 | a.cke_button_disabled:active 22 | { 23 | filter: alpha(opacity = 30); 24 | } 25 | 26 | /* PNG Alpha Transparency Fix For IE<9 */ 27 | .cke_button_disabled .cke_button_icon 28 | { 29 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00ffffff, endColorstr=#00ffffff); 30 | } 31 | 32 | .cke_button_off:hover, 33 | .cke_button_off:focus, 34 | .cke_button_off:active 35 | { 36 | filter: alpha(opacity = 100); 37 | } 38 | 39 | .cke_combo_disabled .cke_combo_inlinelabel, 40 | .cke_combo_disabled .cke_combo_open 41 | { 42 | filter: alpha(opacity = 30); 43 | } 44 | 45 | .cke_toolbox_collapser 46 | { 47 | border: 1px solid #a6a6a6; 48 | } 49 | 50 | .cke_toolbox_collapser .cke_arrow 51 | { 52 | margin-top: 1px; 53 | } 54 | 55 | /* Gradient filters must be removed for HC mode to reveal the background. */ 56 | .cke_hc .cke_top, 57 | .cke_hc .cke_bottom, 58 | .cke_hc .cke_combo_button, 59 | .cke_hc a.cke_combo_button:hover, 60 | .cke_hc a.cke_combo_button:focus, 61 | .cke_hc .cke_toolgroup, 62 | .cke_hc .cke_button_on, 63 | .cke_hc a.cke_button_off:hover, 64 | .cke_hc a.cke_button_off:focus, 65 | .cke_hc a.cke_button_off:active, 66 | .cke_hc .cke_toolbox_collapser, 67 | .cke_hc .cke_toolbox_collapser:hover, 68 | .cke_hc .cke_panel_grouptitle 69 | { 70 | filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); 71 | } 72 | -------------------------------------------------------------------------------- /application/modules/income/views/tableData.php: -------------------------------------------------------------------------------- 1 | $value) {?> 6 | 7 | date; ?> 8 | description; ?> 9 | amount; ?> 10 | category_name; ?> 11 | $tab_id.'" title="Edit">'; 14 | }else if(CheckPermission("income", "own_update") && (CheckPermission("income", "all_update")!=true)){ 15 | $user_id =getRowByTableColomId("income",$value->$tab_id,$tab_id,"user_id"); 16 | if($user_id==$this->user_id){ 17 | echo ''; 18 | } 19 | } 20 | 21 | if(CheckPermission("income", "all_delete")){ 22 | echo '';} 23 | else if(CheckPermission("income", "own_delete") && (CheckPermission("income", "all_delete")!=true)){ 24 | $user_id =getRowByTableColomId("income",$value->$tab_id,$tab_id,"user_id"); 25 | if($user_id==$this->user_id){ 26 | echo ''; 27 | } 28 | } ?> 29 | 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /assets/js/dataTables.bootstrap.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | DataTables Bootstrap 3 integration 3 | ©2011-2014 SpryMedia Ltd - datatables.net/license 4 | */ 5 | (function(l,q){var e=function(b,c){b.extend(!0,c.defaults,{dom:"<'row'<'col-sm-6'l><'col-sm-6'f>><'row'<'col-sm-12'tr>><'row'<'col-sm-5'i><'col-sm-7'p>>",renderer:"bootstrap"});b.extend(c.ext.classes,{sWrapper:"dataTables_wrapper form-inline dt-bootstrap",sFilterInput:"form-control input-sm",sLengthSelect:"form-control input-sm"});c.ext.renderer.pageButton.bootstrap=function(g,e,r,s,i,m){var t=new c.Api(g),u=g.oClasses,j=g.oLanguage.oPaginate,d,f,n=0,p=function(c,e){var k,h,o,a,l=function(a){a.preventDefault(); 6 | b(a.currentTarget).hasClass("disabled")||t.page(a.data.action).draw(!1)};k=0;for(h=e.length;k",{"class":u.sPageButton+" "+ 7 | f,id:0===r&&"string"===typeof a?g.sTableId+"_"+a:null}).append(b("",{href:"#","aria-controls":g.sTableId,"data-dt-idx":n,tabindex:g.iTabIndex}).html(d)).appendTo(c),g.oApi._fnBindAction(o,{action:a},l),n++)}},h;try{h=b(q.activeElement).data("dt-idx")}catch(l){}p(b(e).empty().html('