How to make angular and PHP project with Scorm 1.2? - scorm2004

I need to create a project on javascript and PHP. In this I need to use Scorm 1.2. I am very new to Scrom, how can I use these technologies together?
I have read about Scorm but unable to understand how to use these 3 things together.
Please let me know how I can use angular, PHP & Scorm 1.2 together along with the basic environment creation and coding.
Thanks in advance.

Related

How to implement Tao core PHP LTI 1.3 in my tool?

I am new in LTI 1.3 - tao ,so for me this a bit hard to understand how to embed this library into my tool. I also want to understand the code workflow and structure. For LMS, I am using Moodle .
If is there any example code available for this library (https://github.com/oat-sa/lib-lti1p3-core)? My Tool based on PHP Codeigniter, if available for demo purpose, can someone please share me?
I already installed the core library using composer and configured the basic configuration such as keychain, platform details, tool details. Now in registration, I am having some problem.
If you want to access a LTI tool from Moodle, then there is an existing activity called "External Tool" - no development is required
Go to a course, switch on editing, add an activity and select external tool
The rest is explained here
https://docs.moodle.org/401/en/External_tool

How to build plugins style web platform with angular2

The idea is not new, like Wordpress, Oxwall : a platform created by some guru guy that allowing other dev guys to add new apps (like forum, blog, market-place, whatever) into the platform easily. By easy, we mean either just install new plugin by upload or less user friendly coding new plugin without changing the core code.
Actually, we have a working solution with angular1 but quite clumsy, that's it, multiple stand-alone ng-app within a website, like:
domain.com/forum-spa
domain.com/dating-app-spa
..etc..
Good thing about it is quite straightforward to implement, not much to worry about lazy-loading. But we are not happy with that approach for many reasons.
Angular2 is really close. We hope it can bring a better solution for building a large web platform
iframe
custom components that are added at build time that are added depending on user data like explained in Angular 2 dynamic tabs with user-click chosen components
This approach is compatible with the offline template compiler
There is also a more flexible way that supports user-provided component templates How to realize website with hundreds of pages in Angular2
This approach is not compatible with the offline template compiler and requires the Angular parser and compiler to be included in the build output.

How to use Zend Framework Begining of time

first ive already installed zend framework skeleton application with command from and composer.pharphp composer.phar require zend..... and i type composer suggests and then install all the suggested application on my computer.
composer require zend...
know i have many file and folder about zend framework, but i cant use it.
can anybody tell me about how to use or implement zend framework.
in the code i understand a litle but its blanks on the Controller and Bootstraps.
for know i want to know about to use zend framework, thanks.
Trying to teach you how to use ZF in a single answer would cost a lot, because of the complexity of the framework. Since that, I strongly recommend you to read the tutorial that Zend guys prepared for us to learn the use of the framework.
If you are using ZF1: Tutorial
If you are using ZF2: Tutorial
I really think it's a good starting point and, if in the future you have more specific questions, you can (obviously) ask them here.
I hope this helps and welcome you to Zend Framework ;).

Sample working CMS with Zend Framework

I'm looking for a sample project that uses Zend Framework so that I can see how masters do it.
I'm not looking for something that uses other stuff like smarty, or any other major library.
There are plenty of samples for different subjects on sites like zendcast.com but I need a full working solution.
I couldn't come up with anything like that by googling.
I came accross this a while ago, it has a sectoion on Central authentication
http://www.zend.com/webinar/Framework/70170000000bEs9-webinar-secure-application-development-with-the-ZF-20100505.flv
Here are the notes, look at page 9
http://static.zend.com/topics/Webinar-Zend-Secure-Application-Development-with-the-Zend-Framework.pdf
Is this a good idea?
We are making a full open source CMS, based on Zend Framework: Centurion CMS (http://www.centurion-project.org/).
We are working on it since more than 2 years. The project is under the new BSD licence.
Feel free to try, use, pull feature, make some push request, criticize...
If you have any question use the our Google group: http://groups.google.com/group/centurion-project
Social Engine 4 is what you are asking for but its not free nor open source . The best application ever created using ZF has became even more popular then Zend itself (google trend) its known as "Magento". Its open source and based on best programming practices (design patterns) .
Social Engine 4 projects are built on Zend Framework.
Social Engine 3 used smarty but they decided to move to Zend.
Have a look at TomatoCMS
Pro Zend Framework Techniques: Build a Full CMS Project
I think this book will be useful for you.

Create admin module and configuration in Zend Framework 1.9.0

I am working with zend framework for last 2 months. I got zend framework latest version 1.9.0.
I am new in zend framework programming. I am learning one by one.. in zend framework. Now i am confused with creating admin module in zend and their configuration settings. Please help me to create admin module with in the module folder in zend framework.
Thanks and regards,
Prasanth P
Using Zend_Tool you can create modules.
zf create module name
I did have a few issues when creating modules these two blogs were a great help (few articles on each). I was looking to have separate configs, layouts ect for each one, maybe not what you're after but good read anyway.
http://blog.vandenbos.org/2009/07/07/zend-framework-module-config/
We have a similar problem:
I am designing a large scale application with about 5 modules.
Even though I am not finding my way around, I think this blog post http://blog.astrumfutura.com/archives/415-Self-Contained-Reusable-Zend-Framework-Modules-With-Standardised-Configurators.html might be helpful for you and for anybody else. Please, update this thread if you find anything interesting. thanks.
use of this
http://www.skyrocket.be/2009/01/11/admin-cms-routes-in-zend-framework/