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
| str_replace(array('dž', 'lj', 'nj', 'DŽ', 'Dž', 'LJ', 'Lj', 'NJ', 'Nj', 'a', 'b', 'c', 'ć', 'č', 'd', 'đ', 'e', 'f', 'g', 'i', 'j', 'h', 'k', 'l', 'm', 'n', 'o', 'p', 'r', 's', 'š', 'u', 't', 'v', 'z', 'ž', 'А', 'B', 'C', 'Ć', 'Č', 'D', 'Đ', 'E', 'F', 'G', 'I', 'J', 'H', 'K', 'L', 'M', 'N', 'O', 'P', 'R', 'S', 'Š', 'U', 'T', 'V', 'Z', 'Ž'), array('џ', 'љ', 'њ', 'Џ', 'Џ', 'Љ', 'Љ', 'Њ', 'Њ', 'а', 'б', 'ц', 'ћ', 'ч', 'д', 'ђ', 'е', 'ф', 'г', 'и', 'ј', 'х', 'к', 'л', 'м', 'н', 'о', 'п', 'р', 'с', 'ш', 'у', 'т', 'в', 'з', 'ж', 'А', 'Б', 'Ц', 'Ћ', 'Ч', 'Д', 'Ђ', 'Е', 'Ф', 'Г', 'И', 'Ј', 'Х', 'К', 'Л', 'М', 'Н', 'О', 'П', 'Р', 'С', 'Ш', 'У', 'Т', 'В', 'З', 'Ж'), $text); |
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
| // next | |
| $select->from( | |
| array( | |
| 'photos' => $this->_name | |
| ), | |
| array( | |
| 'photo_id', 'fk_user_id' | |
| ) | |
| ) | |
| ->where('photo_id > ?', $id) |
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
| action = QAction("My action", parent) | |
| action.triggered.connect(my_slot(my_argument)) |
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
| action = QAction("My action", parent) | |
| action.triggered.connect(lambda arg=my_argument: my_slot(arg)) |
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
| array('Extension', false, 'jpeg,jpg,png,gif,doc,docx,odt,ppt,pptx,odp,xls,xlsx,ods,pdf'), | |
| array('MimeType', false, array('image/gif', | |
| 'image/jpeg', | |
| 'image/png', | |
| 'application/msword', | |
| 'application/vnd.openxmlformats-officedocument.wordprocessingml.document', | |
| 'application/vnd.oasis.opendocument.text', | |
| 'application/vnd.ms-powerpoint', | |
| 'application/vnd.openxmlformats-officedocument.presentationml.presentation', | |
| 'application/vnd.oasis.opendocument.presentation', |
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
| <?php | |
| require_once 'PHP/CompatInfo.php'; | |
| $source = '/home/robert/www/Zend/'; | |
| $driverType = 'xml'; | |
| $driverOptions = array(); | |
| $info = new PHP_CompatInfo($driverType, $driverOptions); |
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
| $ find /path/to -type d -exec chmod 775 {} \; | |
| $ find /path/to -type f -exec chmod 664 {} \; |
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
| <?php | |
| class Bootstrap extends Zend_Application_Bootstrap_Bootstrap { | |
| public function _initViewHelpers() | |
| { | |
| $this->bootstrap('layout'); | |
| $this->_layout = $this->getResource('layout'); | |
| $this->_view = $this->_layout->getView(); |
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
| <?php | |
| class My_Form extends Zend_Dojo_Form | |
| { | |
| public function init() | |
| { | |
| $this->addElement( | |
| 'ValidationTextBox', | |
| 'title', | |
| array( | |
| 'label' => '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
| var ttids = Array(); | |
| dijit.showTooltip=function(_a,_b,_c,_d){ | |
| if(!ttids[_b.id]){ | |
| ttids[_b.id]=new dijit._MasterTooltip(); | |
| } | |
| return ttids[_b.id].show(_a,_b,_c,_d); | |
| }; | |
| dijit.hideTooltip=function(_e){ | |
| if(!ttids[_e.id]){ | |
| ttids[_e.id]=new dijit._MasterTooltip(); |
OlderNewer