{"id":19807062,"url":"https://github.com/wpdew/ci3-jumpstart","last_synced_at":"2025-05-01T07:31:24.962Z","repository":{"id":57043501,"uuid":"121014276","full_name":"wpdew/Ci3-Jumpstart","owner":"wpdew","description":"There will be documentation","archived":false,"fork":false,"pushed_at":"2018-04-24T13:30:12.000Z","size":4679,"stargazers_count":3,"open_issues_count":2,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-06T11:02:05.426Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://pomerla.github.io/Ci3-Jumpstart/","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wpdew.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-02-10T12:40:09.000Z","updated_at":"2018-05-11T20:38:45.000Z","dependencies_parsed_at":"2022-08-23T23:30:17.987Z","dependency_job_id":null,"html_url":"https://github.com/wpdew/Ci3-Jumpstart","commit_stats":null,"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wpdew%2FCi3-Jumpstart","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wpdew%2FCi3-Jumpstart/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wpdew%2FCi3-Jumpstart/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wpdew%2FCi3-Jumpstart/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wpdew","download_url":"https://codeload.github.com/wpdew/Ci3-Jumpstart/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251840222,"owners_count":21652299,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-12T09:09:24.199Z","updated_at":"2025-05-01T07:31:24.370Z","avatar_url":"https://github.com/wpdew.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"**Installation package Codeigniter**\r\n\r\n\u003cimg src=\"https://img.shields.io/badge/Codeigniter-3.1.8-orange.svg\" /\u003e \u003cimg src=\"https://img.shields.io/badge/Update-May/24/2018-36ade1.svg\" /\u003e \u003ca href=\"https://github.com/pomerla/Ci3-Jumpstart/releases\" alt=\"Version\"\u003e\u003cimg src=\"https://img.shields.io/badge/Version-v1.1.4-brightgreen.svg\" /\u003e\u003c/a\u003e\r\n\r\n\r\n## Quick start\r\nThe preferred way to install this extension is through [composer](http://getcomposer.org/download/).\r\n\r\nEither run\r\n\r\n```\r\ncomposer create-project pomerla/ci3-jumpstart\r\n```\r\n\r\nOr download and unzip the latest version of the archive to your hosting.\r\nGo to the directory with the unpacked engine.\r\nInstallation will start automatically.\r\nFill the connection settings to the database and set the administrator login and password.\r\nThe install.txt file is required. This file will be automatically deleted after installation.\u003cbr /\u003e\r\n\r\nWhen you're done, you can delete this ( .gitignore, LICENSE\t, README.md, composer.json and dir vendor) with your repository.\u003cbr /\u003e\r\n\r\nBootstrap and font-awesome are in the assets folders.\u003cbr /\u003e\r\n\r\nA simple CRUD library is included in the assembly.\u003cbr /\u003e\r\nExample of use\r\n\r\n```\r\nfunction __construct()\r\n\t{\r\n\t\tparent::__construct();\r\n\t    $this-\u003eload-\u003elibrary('common/crud_lib');\r\n\t}\r\n\r\n\t\r\npublic function index()\r\n\t{\r\n\t\tif (!$this-\u003eion_auth-\u003elogged_in())\r\n\t\t{\r\n\t\t\t// redirect them to the login page\r\n\t\t\tredirect('auth/login', 'refresh');\r\n\t\t}\r\n\t\telse if (!$this-\u003eion_auth-\u003eis_admin()) // remove this elseif if you want to enable this for non-admins\r\n\t\t{\r\n\t\t\t// redirect them to the home page because they must be an administrator to view this\r\n\t\t\treturn show_error($this-\u003elang-\u003eline('text_error_1'), '', $heading = $this-\u003elang-\u003eline('text_error_h'));\r\n\t\t}\r\n\t\telse\r\n\t\t{\r\n            $data['users'] = $this-\u003ecrud_lib-\u003eselect('users');\r\n            //use select('users') where array('ip_address'=\u003e'127.0.0.1') order_by 'id ASC' or 'DESC'\r\n            //$data['users'] = $this-\u003ecrud_lib-\u003eselect('users',array('ip_address'=\u003e'127.0.0.1'),'id DESC');\r\n            \r\n            //$dat = array(\r\n\t\t\t//\t'first_name' =\u003e 'Admin',\r\n            //    'last_name' =\u003e 'Members',\r\n\t\t\t//\t'email' =\u003e 'admin@admin.com'\r\n\t\t\t//);\r\n\t\t\t\r\n            //$this-\u003ecrud_lib-\u003einsert('users',$dat);\r\n            //$this-\u003ecrud_lib-\u003edelete('users','6');\r\n            //$this-\u003ecrud_lib-\u003eupdate('users','2',$dat);\r\n            \r\n\t\t\t$this-\u003eload-\u003eview('admin_message', $data);\r\n\t\t}\r\n\t\t\r\n\t}\t\r\n```\r\n    \r\n*We recommend that you open this README in another tab as you perform the tasks below. You can [(watch our video Soon)](https://youtu.be/) for a full demo of all the steps in this tutorial.*\r\n\r\n---\r\n\r\n## Links\r\n\r\n[Codeigniter](https://github.com/bcit-ci/CodeIgniter)\u003cbr /\u003e\r\n[Codeigniter-hmvc](https://github.com/j4chal/codeigniter-hmvc)\u003cbr /\u003e\r\n[CodeIgniter-develbar](https://github.com/JCSama/CodeIgniter-develbar/)\u003cbr /\u003e\r\n[CodeIgniter-Ion-Auth](https://github.com/benedmunds/CodeIgniter-Ion-Auth)\u003cbr /\u003e\r\n\r\n---","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwpdew%2Fci3-jumpstart","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwpdew%2Fci3-jumpstart","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwpdew%2Fci3-jumpstart/lists"}