This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Ext.create('Ext.XTemplate', | |
| '<h1>Active Users</h1>', | |
| '<tpl for=".">', | |
| '<tpl if="active == true">', | |
| '<div class="users">', | |
| '<p>{name}</p>', | |
| '</div>', | |
| '</tpl>', | |
| '</tpl>', | |
| '<h1>Deactive Users</h1>', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| new Ext.XTemplate( // Kiosk modu | |
| '<ul id="finished-list">', | |
| '<tpl for=".">', | |
| '<tpl if="xindex == 1">', | |
| '<li><span class="info"></span><strong class="important">{description}</strong> başvurmanızı öneririz.</span></li>', | |
| '</tpl>', | |
| '</tpl>', | |
| '</ul>' | |
| ) : |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $searchQuery = Doctrine_Core::getTable('Model_Entity_City') | |
| ->search($this->_request->query); | |
| $searchIds = array(); | |
| foreach ($searchQuery as $result) { | |
| $searchIds[] = $result['id']; | |
| } | |
| // DQL | |
| $query = Doctrine_Query::create() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- login.html.erb --> | |
| <script type="text/javascript">Kebab.boot('Kebab.login.Application', 'http://static.kebab.local', ''); </script> | |
| <!-- desktop.html.erb --> | |
| <script type="text/javascript">Kebab.boot('Kebab.desktop.Application', 'http://static.kebab.local', '');</script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* ----------------------------------------------------------------------------- | |
| Kebab Project 2.x (Kebab Revolution) - Web OS Client Platform for Ext JS 4.x | |
| http://kebab-project.com | |
| Copyright (c) 2011-2012 lab2023 - internet technologies TURKEY Inc. | |
| http://www.lab2023.com | |
| ----------------------------------------------------------------------------- */ | |
| /** | |
| * Prepare environment, enable loader an boot kebab automatically | |
| * |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- | |
| Kebab Project 2.0.0 (Kebab Revolution) | |
| http://kebab-project.com | |
| Copyright (c) 2011-2012 lab2023 - internet technologies TURKEY Inc. | |
| http://www.lab2023.com | |
| --> | |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- | |
| Kebab Project 2.0.0 (Kebab Revolution) | |
| http://kebab-project.com | |
| Copyright (c) 2011-2012 lab2023 - internet technologies TURKEY Inc. | |
| http://www.lab2023.com | |
| --> | |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* ----------------------------------------------------------------------------- | |
| Kebab Project 2.x (Kebab Revolution) - Web OS Client Platform for Ext JS 4.x | |
| http://kebab-project.com | |
| Copyright (c) 2011-2012 lab2023 - internet technologies TURKEY Inc. | |
| http://www.lab2023.com | |
| ----------------------------------------------------------------------------- */ | |
| /** | |
| * Prepare environment, enable loader an boot kebab automatically | |
| * |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- | |
| Copyright (c) 2011-2012 lab2023 - internet technologies TURKEY Inc. | |
| http://www.lab2023.com | |
| --> | |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Ext JS 4 Ajax Requester</title> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| app | |
| -controller | |
| -view | |
| -model | |
| -module | |
| -app_a | |
| -controller | |
| -model | |
| -view | |
| -Application.js (module a) |