{"id":27101515,"url":"https://github.com/yek-plus/yekcms","last_synced_at":"2026-04-30T15:32:17.176Z","repository":{"id":109681820,"uuid":"187705095","full_name":"YEK-PLUS/YekCMS","owner":"YEK-PLUS","description":"PHP cms scipt","archived":false,"fork":false,"pushed_at":"2021-06-16T23:08:04.000Z","size":7853,"stargazers_count":0,"open_issues_count":4,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-04-06T14:41:40.386Z","etag":null,"topics":["automatic","cms","php","script"],"latest_commit_sha":null,"homepage":"https://yek-plus.github.io/YekCMS","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/YEK-PLUS.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-05-20T19:58:13.000Z","updated_at":"2021-06-16T23:08:11.000Z","dependencies_parsed_at":"2023-07-24T14:47:42.955Z","dependency_job_id":null,"html_url":"https://github.com/YEK-PLUS/YekCMS","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/YEK-PLUS/YekCMS","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YEK-PLUS%2FYekCMS","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YEK-PLUS%2FYekCMS/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YEK-PLUS%2FYekCMS/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YEK-PLUS%2FYekCMS/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/YEK-PLUS","download_url":"https://codeload.github.com/YEK-PLUS/YekCMS/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YEK-PLUS%2FYekCMS/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32469344,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-30T13:12:12.517Z","status":"ssl_error","status_checked_at":"2026-04-30T13:12:06.837Z","response_time":57,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["automatic","cms","php","script"],"created_at":"2025-04-06T14:39:01.096Z","updated_at":"2026-04-30T15:32:17.170Z","avatar_url":"https://github.com/YEK-PLUS.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# YekCMS | PHP Web Application Framework\r\n[![Gitpod Ready-to-Code](https://img.shields.io/badge/Gitpod-Ready--to--Code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/YEK-PLUS/YekCMS) \r\n[![Build Status](https://travis-ci.org/YEK-PLUS/YekCMS.png?branch=master)](https://travis-ci.org/YEK-PLUS/YekCMS) \r\n[![LICENCE](https://img.shields.io/github/license/YEK-PLUS/YekCMS.svg)](https://github.com/YEK-PLUS/YekCMS/blob/master/LICENSE)\r\n\r\n\r\n\r\nYekCMS is an open source CMS system for your web applications and has included frontend and backed packages for convenience.\r\n\r\n\r\n|Frontend|Backend|\r\n|--------|-------|\r\n|[Jquery]|[AltoRouter]|\r\n|[Bootstrap]|[Medoo]|\r\n|[Materializecss]||\r\n\r\n\r\n## Methods\r\nCreate new method and call this method in your page file\r\n\r\n#### Normal Method\r\n\r\n```php\r\n$this-\u003eaddMethod(\"HelloWord\",function(){\r\n  echo 'Hello Word';\r\n});\r\n```\r\n\r\n#### With Param\r\n\r\nIf you want the call function with params ,just type `$params = null` in function construction.\r\n\r\n```php\r\n$this-\u003eaddMethod(\"HelloWorld\",function($params = null){\r\n    # get param1 with setParams function\r\n    # setParams function arguments\r\n    # $params , indexed or associative arrays\r\n    # int , value key\r\n    $param1 = setParams($params,0);\r\n    echo $param1;\r\n});\r\n```\r\n\r\n## Page Structure and Method Calling\r\n`/src/methods/HelloWorld.php`\r\n```php\r\n\u003c?php\r\n$this-\u003eaddMethod(\"HelloWorld\",function(){\r\n  echo 'Hello World';\r\n});\r\n?\u003e\r\n```\r\nAnd include this method from `/src/methods/load.php`\r\n\r\n```php\r\n...\r\ninclude __DIR__.'/HelloWorld.php';\r\n```\r\n`/src/pages/home.php`\r\n```html\r\n\u003chtml\u003e\r\n    \u003chead\u003e\r\n        \u003c?php\r\n        $this-\u003emethod-\u003emeta();\r\n        $this-\u003emethod-\u003ecss_lib();\r\n        $this-\u003emethod-\u003ecss_local();\r\n        ?\u003e\r\n        \u003ctitle\u003e\u003c?= SITE_NAME ?\u003e\u003c/title\u003e\r\n    \u003c/head\u003e\r\n    \u003cbody\u003e\r\n        \u003c?php $this-\u003emethod-\u003eHelloWorld(); ?\u003e\r\n    \u003c/body\u003e\r\n\u003c?php\r\n$this-\u003emethod-\u003ejs_lib();\r\n$this-\u003emethod-\u003ejs_local();\r\n?\u003e\r\n\u003c/html\u003e\r\n```\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nFile Structure\r\n```\r\n.\r\n├── LICENSE\r\n├── README.md\r\n├── asset\r\n│   ├── css\r\n│   │   └── CSS Files Here\r\n│   ├── js\r\n│   │   └── JS Files Here\r\n│   └── svg\r\n|       └── JS Files Here\r\n├── lib\r\n│   ├── AltoRouter\r\n│   ├── Bootstrap\r\n│   ├── Jquery\r\n│   ├── Medoo\r\n│   ├── Tailwind\r\n│   ├── Font Awesome\r\n│   └── materialize\r\n└── src\r\n    ├── admin\r\n    │   └── admin cms area\r\n    ├── methods\r\n    │   └── method files\r\n    ├── pages\r\n    │   └── Pages 404, home etc..\r\n    └── functions page , router etc..\r\n```\r\n\r\n\r\n\r\n   [Jquery]: \u003chttps://github.com/jquery/jquery\u003e\r\n   [Bootstrap]: \u003chttps://github.com/twbs/bootstrap\u003e\r\n   [Materializecss]: \u003chttps://github.com/Dogfalo/materialize\u003e\r\n   [AltoRouter]: \u003chttps://github.com/dannyvankooten/AltoRouter\u003e\r\n   [Medoo]: \u003chttps://github.com/catfan/Medoo\u003e\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyek-plus%2Fyekcms","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyek-plus%2Fyekcms","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyek-plus%2Fyekcms/lists"}