├── .gitignore ├── .htaccess ├── README.md ├── assets └── index.php ├── gallery ├── .hgkeep ├── 334.jpg ├── 334medium.jpg ├── 334small.jpg ├── 335.jpg ├── 335medium.jpg ├── 335small.jpg ├── 336.jpg ├── 336medium.jpg ├── 336small.jpg ├── 337.jpg ├── 337medium.jpg ├── 337small.jpg ├── 338.jpg ├── 338medium.jpg ├── 338small.jpg ├── 339.jpg ├── 339medium.jpg ├── 339small.jpg ├── 340.jpg ├── 340medium.jpg ├── 340small.jpg ├── 341.jpg ├── 341medium.jpg ├── 341small.jpg ├── 342.jpg ├── 342medium.jpg ├── 342small.jpg ├── 343.jpg ├── 343medium.jpg ├── 343small.jpg ├── 344.jpg ├── 344medium.jpg ├── 344small.jpg ├── 345.jpg ├── 345small.jpg ├── 346.jpg ├── 346medium.jpg ├── 346small.jpg ├── 347.jpg ├── 347medium.jpg ├── 347small.jpg ├── 348.jpg ├── 348medium.jpg ├── 348small.jpg ├── 349.jpg ├── 349medium.jpg ├── 349small.jpg ├── 350.jpg ├── 350medium.jpg ├── 350small.jpg ├── 351.jpg ├── 351medium.jpg ├── 351small.jpg ├── 352.jpg ├── 352medium.jpg ├── 352small.jpg ├── _334.jpg ├── _335.jpg ├── _336.jpg ├── _337.jpg ├── _338.jpg ├── _339.jpg ├── _340.jpg ├── _341.jpg ├── _342.jpg ├── _343.jpg ├── _344.jpg ├── _345.jpg ├── _346.jpg ├── _347.jpg ├── _348.jpg ├── _349.jpg ├── _350.jpg ├── _351.jpg ├── _352.jpg └── noimage.gif ├── index.php ├── install ├── protected ├── .htaccess ├── behaviors │ ├── CSerializeBehavior.php │ ├── JsTreeBehavior.php │ └── NestedSetBehavior.php ├── codecept.phar ├── codeception.yml ├── components │ ├── Controller.php │ ├── UloginUserIdentity.php │ ├── UserIdentity.php │ ├── WebUser.php │ └── textValidator.php ├── config │ ├── banners.php │ ├── main_conf.php │ └── settings.php ├── controllers │ ├── AdvertsController.php │ ├── CompanyController.php │ ├── DefaultController.php │ ├── FavoritesController.php │ ├── LoginController.php │ ├── MessagesController.php │ ├── RecoveryController.php │ ├── RegistrationController.php │ ├── ReviewsController.php │ ├── SiteController.php │ └── UserController.php ├── data │ └── install.sql ├── extensions │ ├── .hgkeep │ ├── Configer │ │ ├── Configer.php │ │ └── views │ │ │ └── form.php │ ├── ImagesHelper.php │ ├── PeopleDate.php │ ├── Translit.php │ ├── UrlTransliterate │ │ └── UrlTransliterate.php │ ├── Yiitube.php │ ├── YoutubeHelper.php │ ├── bootstrap │ │ ├── LICENSE.txt │ │ ├── assets │ │ │ ├── css │ │ │ │ ├── bootstrap-responsive.css │ │ │ │ ├── bootstrap-responsive.min.css │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── yii.css │ │ │ ├── img │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ ├── glyphicons-halflings.png │ │ │ │ └── loading.gif │ │ │ ├── js │ │ │ │ ├── bootstrap-affix.js │ │ │ │ ├── bootstrap-alert.js │ │ │ │ ├── bootstrap-button.js │ │ │ │ ├── bootstrap-carousel.js │ │ │ │ ├── bootstrap-collapse.js │ │ │ │ ├── bootstrap-dropdown.js │ │ │ │ ├── bootstrap-modal.js │ │ │ │ ├── bootstrap-popover.js │ │ │ │ ├── bootstrap-scrollspy.js │ │ │ │ ├── bootstrap-tab.js │ │ │ │ ├── bootstrap-tooltip.js │ │ │ │ ├── bootstrap-transition.js │ │ │ │ ├── bootstrap-typeahead.js │ │ │ │ ├── bootstrap.js │ │ │ │ └── bootstrap.min.js │ │ │ └── less │ │ │ │ ├── accordion.less │ │ │ │ ├── alerts.less │ │ │ │ ├── bootstrap.less │ │ │ │ ├── breadcrumbs.less │ │ │ │ ├── button-groups.less │ │ │ │ ├── buttons.less │ │ │ │ ├── carousel.less │ │ │ │ ├── close.less │ │ │ │ ├── code.less │ │ │ │ ├── component-animations.less │ │ │ │ ├── dropdowns.less │ │ │ │ ├── forms.less │ │ │ │ ├── grid.less │ │ │ │ ├── hero-unit.less │ │ │ │ ├── labels-badges.less │ │ │ │ ├── layouts.less │ │ │ │ ├── media.less │ │ │ │ ├── mixins.less │ │ │ │ ├── modals.less │ │ │ │ ├── navbar.less │ │ │ │ ├── navs.less │ │ │ │ ├── pager.less │ │ │ │ ├── pagination.less │ │ │ │ ├── popovers.less │ │ │ │ ├── progress-bars.less │ │ │ │ ├── reset.less │ │ │ │ ├── responsive-1200px-min.less │ │ │ │ ├── responsive-767px-max.less │ │ │ │ ├── responsive-768px-979px.less │ │ │ │ ├── responsive-navbar.less │ │ │ │ ├── responsive-utilities.less │ │ │ │ ├── responsive.less │ │ │ │ ├── scaffolding.less │ │ │ │ ├── sprites.less │ │ │ │ ├── tables.less │ │ │ │ ├── thumbnails.less │ │ │ │ ├── tooltip.less │ │ │ │ ├── type.less │ │ │ │ ├── utilities.less │ │ │ │ ├── variables.less │ │ │ │ ├── wells.less │ │ │ │ └── yii.less │ │ ├── components │ │ │ └── Bootstrap.php │ │ ├── form │ │ │ ├── TbForm.php │ │ │ ├── TbFormButtonElement.php │ │ │ └── TbFormInputElement.php │ │ ├── gii │ │ │ └── bootstrap │ │ │ │ ├── BootstrapCode.php │ │ │ │ ├── BootstrapGenerator.php │ │ │ │ ├── templates │ │ │ │ └── default │ │ │ │ │ ├── _form.php │ │ │ │ │ ├── _search.php │ │ │ │ │ ├── _view.php │ │ │ │ │ ├── admin.php │ │ │ │ │ ├── controller.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── index.php │ │ │ │ │ ├── update.php │ │ │ │ │ └── view.php │ │ │ │ └── views │ │ │ │ └── index.php │ │ ├── theme │ │ │ ├── css │ │ │ │ └── styles.css │ │ │ └── views │ │ │ │ ├── .htaccess │ │ │ │ ├── layouts │ │ │ │ ├── column2.php │ │ │ │ └── main.php │ │ │ │ └── site │ │ │ │ ├── contact.php │ │ │ │ ├── index.php │ │ │ │ └── login.php │ │ └── widgets │ │ │ ├── TbActiveForm.php │ │ │ ├── TbAffix.php │ │ │ ├── TbAlert.php │ │ │ ├── TbBadge.php │ │ │ ├── TbBaseMenu.php │ │ │ ├── TbBreadcrumbs.php │ │ │ ├── TbButton.php │ │ │ ├── TbButtonColumn.php │ │ │ ├── TbButtonGroup.php │ │ │ ├── TbCarousel.php │ │ │ ├── TbCollapse.php │ │ │ ├── TbDataColumn.php │ │ │ ├── TbDetailView.php │ │ │ ├── TbDropdown.php │ │ │ ├── TbGridView.php │ │ │ ├── TbHeroUnit.php │ │ │ ├── TbLabel.php │ │ │ ├── TbListView.php │ │ │ ├── TbMenu.php │ │ │ ├── TbModal.php │ │ │ ├── TbNavbar.php │ │ │ ├── TbPager.php │ │ │ ├── TbProgress.php │ │ │ ├── TbScrollSpy.php │ │ │ ├── TbTabs.php │ │ │ ├── TbThumbnails.php │ │ │ ├── TbTypeahead.php │ │ │ └── input │ │ │ ├── TbInput.php │ │ │ ├── TbInputHorizontal.php │ │ │ ├── TbInputInline.php │ │ │ ├── TbInputSearch.php │ │ │ └── TbInputVertical.php │ ├── ckeditor │ │ ├── CKEditor.php │ │ └── assets │ │ │ ├── ckeditor.js │ │ │ ├── config.js │ │ │ ├── images │ │ │ └── spacer.gif │ │ │ ├── lang │ │ │ ├── _languages.js │ │ │ ├── _translationstatus.txt │ │ │ ├── af.js │ │ │ ├── ar.js │ │ │ ├── bg.js │ │ │ ├── bn.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── en-uk.js │ │ │ ├── en.js │ │ │ ├── eo.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fo.js │ │ │ ├── fr-ca.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── gu.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mn.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── nl.js │ │ │ ├── no.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sr-latn.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-cn.js │ │ │ └── zh.js │ │ │ ├── plugins │ │ │ ├── about │ │ │ │ ├── dialogs │ │ │ │ │ ├── about.js │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ └── plugin.js │ │ │ ├── basicstyles │ │ │ │ └── plugin.js │ │ │ ├── blockquote │ │ │ │ └── plugin.js │ │ │ ├── button │ │ │ │ └── plugin.js │ │ │ ├── clipboard │ │ │ │ ├── dialogs │ │ │ │ │ └── paste.js │ │ │ │ └── plugin.js │ │ │ ├── colorbutton │ │ │ │ └── plugin.js │ │ │ ├── contextmenu │ │ │ │ └── plugin.js │ │ │ ├── dialog │ │ │ │ ├── dialogDefinition.js │ │ │ │ └── plugin.js │ │ │ ├── dialogui │ │ │ │ └── plugin.js │ │ │ ├── domiterator │ │ │ │ └── plugin.js │ │ │ ├── editingblock │ │ │ │ └── plugin.js │ │ │ ├── elementspath │ │ │ │ └── plugin.js │ │ │ ├── enterkey │ │ │ │ └── plugin.js │ │ │ ├── entities │ │ │ │ └── plugin.js │ │ │ ├── fakeobjects │ │ │ │ └── plugin.js │ │ │ ├── filebrowser │ │ │ │ └── plugin.js │ │ │ ├── find │ │ │ │ ├── dialogs │ │ │ │ │ └── find.js │ │ │ │ └── plugin.js │ │ │ ├── flash │ │ │ │ ├── dialogs │ │ │ │ │ └── flash.js │ │ │ │ ├── images │ │ │ │ │ └── placeholder.png │ │ │ │ └── plugin.js │ │ │ ├── floatpanel │ │ │ │ └── plugin.js │ │ │ ├── font │ │ │ │ └── plugin.js │ │ │ ├── format │ │ │ │ └── plugin.js │ │ │ ├── forms │ │ │ │ ├── dialogs │ │ │ │ │ ├── button.js │ │ │ │ │ ├── checkbox.js │ │ │ │ │ ├── form.js │ │ │ │ │ ├── hiddenfield.js │ │ │ │ │ ├── radio.js │ │ │ │ │ ├── select.js │ │ │ │ │ ├── textarea.js │ │ │ │ │ └── textfield.js │ │ │ │ └── plugin.js │ │ │ ├── horizontalrule │ │ │ │ └── plugin.js │ │ │ ├── htmldataprocessor │ │ │ │ └── plugin.js │ │ │ ├── htmlwriter │ │ │ │ └── plugin.js │ │ │ ├── iframedialog │ │ │ │ └── plugin.js │ │ │ ├── image │ │ │ │ ├── dialogs │ │ │ │ │ └── image.js │ │ │ │ └── plugin.js │ │ │ ├── indent │ │ │ │ └── plugin.js │ │ │ ├── justify │ │ │ │ └── plugin.js │ │ │ ├── keystrokes │ │ │ │ └── plugin.js │ │ │ ├── link │ │ │ │ ├── dialogs │ │ │ │ │ ├── anchor.js │ │ │ │ │ └── link.js │ │ │ │ ├── images │ │ │ │ │ └── anchor.gif │ │ │ │ └── plugin.js │ │ │ ├── list │ │ │ │ └── plugin.js │ │ │ ├── listblock │ │ │ │ └── plugin.js │ │ │ ├── maximize │ │ │ │ └── plugin.js │ │ │ ├── menu │ │ │ │ └── plugin.js │ │ │ ├── menubutton │ │ │ │ └── plugin.js │ │ │ ├── newpage │ │ │ │ └── plugin.js │ │ │ ├── pagebreak │ │ │ │ ├── images │ │ │ │ │ └── pagebreak.gif │ │ │ │ └── plugin.js │ │ │ ├── panel │ │ │ │ └── plugin.js │ │ │ ├── panelbutton │ │ │ │ └── plugin.js │ │ │ ├── pastefromword │ │ │ │ ├── dialogs │ │ │ │ │ └── pastefromword.js │ │ │ │ └── plugin.js │ │ │ ├── pastetext │ │ │ │ ├── dialogs │ │ │ │ │ └── pastetext.js │ │ │ │ └── plugin.js │ │ │ ├── popup │ │ │ │ └── plugin.js │ │ │ ├── preview │ │ │ │ └── plugin.js │ │ │ ├── print │ │ │ │ └── plugin.js │ │ │ ├── removeformat │ │ │ │ └── plugin.js │ │ │ ├── resize │ │ │ │ └── plugin.js │ │ │ ├── richcombo │ │ │ │ └── plugin.js │ │ │ ├── save │ │ │ │ └── plugin.js │ │ │ ├── scayt │ │ │ │ ├── dialogs │ │ │ │ │ ├── options.js │ │ │ │ │ └── toolbar.css │ │ │ │ └── plugin.js │ │ │ ├── selection │ │ │ │ └── plugin.js │ │ │ ├── showblocks │ │ │ │ ├── images │ │ │ │ │ ├── block_address.png │ │ │ │ │ ├── block_blockquote.png │ │ │ │ │ ├── block_div.png │ │ │ │ │ ├── block_h1.png │ │ │ │ │ ├── block_h2.png │ │ │ │ │ ├── block_h3.png │ │ │ │ │ ├── block_h4.png │ │ │ │ │ ├── block_h5.png │ │ │ │ │ ├── block_h6.png │ │ │ │ │ ├── block_p.png │ │ │ │ │ └── block_pre.png │ │ │ │ └── plugin.js │ │ │ ├── smiley │ │ │ │ ├── dialogs │ │ │ │ │ └── smiley.js │ │ │ │ ├── images │ │ │ │ │ ├── angel_smile.gif │ │ │ │ │ ├── angry_smile.gif │ │ │ │ │ ├── broken_heart.gif │ │ │ │ │ ├── confused_smile.gif │ │ │ │ │ ├── cry_smile.gif │ │ │ │ │ ├── devil_smile.gif │ │ │ │ │ ├── embaressed_smile.gif │ │ │ │ │ ├── envelope.gif │ │ │ │ │ ├── heart.gif │ │ │ │ │ ├── kiss.gif │ │ │ │ │ ├── lightbulb.gif │ │ │ │ │ ├── omg_smile.gif │ │ │ │ │ ├── regular_smile.gif │ │ │ │ │ ├── sad_smile.gif │ │ │ │ │ ├── shades_smile.gif │ │ │ │ │ ├── teeth_smile.gif │ │ │ │ │ ├── thumbs_down.gif │ │ │ │ │ ├── thumbs_up.gif │ │ │ │ │ ├── tounge_smile.gif │ │ │ │ │ ├── whatchutalkingabout_smile.gif │ │ │ │ │ └── wink_smile.gif │ │ │ │ └── plugin.js │ │ │ ├── sourcearea │ │ │ │ └── plugin.js │ │ │ ├── specialchar │ │ │ │ ├── dialogs │ │ │ │ │ └── specialchar.js │ │ │ │ └── plugin.js │ │ │ ├── styles │ │ │ │ └── plugin.js │ │ │ ├── stylescombo │ │ │ │ ├── plugin.js │ │ │ │ └── styles │ │ │ │ │ └── default.js │ │ │ ├── tab │ │ │ │ └── plugin.js │ │ │ ├── table │ │ │ │ ├── dialogs │ │ │ │ │ └── table.js │ │ │ │ └── plugin.js │ │ │ ├── tabletools │ │ │ │ ├── dialogs │ │ │ │ │ └── tableCell.js │ │ │ │ └── plugin.js │ │ │ ├── templates │ │ │ │ ├── dialogs │ │ │ │ │ └── templates.js │ │ │ │ ├── plugin.js │ │ │ │ └── templates │ │ │ │ │ ├── default.js │ │ │ │ │ └── images │ │ │ │ │ ├── template1.gif │ │ │ │ │ ├── template2.gif │ │ │ │ │ └── template3.gif │ │ │ ├── toolbar │ │ │ │ └── plugin.js │ │ │ ├── uicolor │ │ │ │ ├── dialogs │ │ │ │ │ └── uicolor.js │ │ │ │ ├── lang │ │ │ │ │ └── en.js │ │ │ │ ├── plugin.js │ │ │ │ ├── uicolor.gif │ │ │ │ └── yui │ │ │ │ │ ├── assets │ │ │ │ │ ├── hue_bg.png │ │ │ │ │ ├── hue_thumb.png │ │ │ │ │ ├── picker_mask.png │ │ │ │ │ ├── picker_thumb.png │ │ │ │ │ └── yui.css │ │ │ │ │ └── yui.js │ │ │ ├── undo │ │ │ │ └── plugin.js │ │ │ ├── wsc │ │ │ │ ├── dialogs │ │ │ │ │ ├── ciframe.html │ │ │ │ │ ├── tmpFrameset.html │ │ │ │ │ ├── wsc.css │ │ │ │ │ └── wsc.js │ │ │ │ └── plugin.js │ │ │ └── wysiwygarea │ │ │ │ └── plugin.js │ │ │ ├── skins │ │ │ ├── kama │ │ │ │ ├── dialog.css │ │ │ │ ├── editor.css │ │ │ │ ├── icons.png │ │ │ │ ├── images │ │ │ │ │ ├── dialog_sides.gif │ │ │ │ │ ├── dialog_sides.png │ │ │ │ │ ├── dialog_sides_rtl.png │ │ │ │ │ ├── mini.gif │ │ │ │ │ ├── noimage.png │ │ │ │ │ ├── sprites.png │ │ │ │ │ ├── sprites_ie6.png │ │ │ │ │ └── toolbar_start.gif │ │ │ │ ├── skin.js │ │ │ │ └── templates.css │ │ │ ├── office2003 │ │ │ │ ├── dialog.css │ │ │ │ ├── editor.css │ │ │ │ ├── icons.png │ │ │ │ ├── images │ │ │ │ │ ├── dialog_sides.gif │ │ │ │ │ ├── dialog_sides.png │ │ │ │ │ ├── dialog_sides_rtl.png │ │ │ │ │ ├── mini.gif │ │ │ │ │ ├── noimage.png │ │ │ │ │ ├── sprites.png │ │ │ │ │ └── sprites_ie6.png │ │ │ │ ├── skin.js │ │ │ │ └── templates.css │ │ │ └── v2 │ │ │ │ ├── dialog.css │ │ │ │ ├── editor.css │ │ │ │ ├── icons.png │ │ │ │ ├── images │ │ │ │ ├── dialog_sides.gif │ │ │ │ ├── dialog_sides.png │ │ │ │ ├── dialog_sides_rtl.png │ │ │ │ ├── mini.gif │ │ │ │ ├── noimage.png │ │ │ │ ├── sprites.png │ │ │ │ ├── sprites_ie6.png │ │ │ │ └── toolbar_start.gif │ │ │ │ ├── skin.js │ │ │ │ └── templates.css │ │ │ └── themes │ │ │ └── default │ │ │ └── theme.js │ ├── email │ │ ├── Debug.php │ │ ├── Email.php │ │ ├── css │ │ │ └── debug.css │ │ └── views │ │ │ └── debug.php │ ├── fancybox │ │ ├── AlFancybox.php │ │ └── assets │ │ │ ├── helpers │ │ │ ├── fancybox_buttons.png │ │ │ ├── jquery.fancybox-buttons.css │ │ │ ├── jquery.fancybox-buttons.js │ │ │ ├── jquery.fancybox-media.js │ │ │ ├── jquery.fancybox-thumbs.css │ │ │ └── jquery.fancybox-thumbs.js │ │ │ ├── images │ │ │ ├── blank.gif │ │ │ ├── fancybox_loading.gif │ │ │ ├── fancybox_loading@2x.gif │ │ │ ├── fancybox_overlay.png │ │ │ ├── fancybox_sprite.png │ │ │ └── fancybox_sprite@2x.png │ │ │ ├── jquery.fancybox.css │ │ │ ├── jquery.fancybox.js │ │ │ └── jquery.fancybox.pack.js │ ├── gallerymanager │ │ ├── .hg_archival.txt │ │ ├── GalleryBehavior.php │ │ ├── GalleryController.php │ │ ├── GalleryManager.php │ │ ├── assets │ │ │ ├── galleryManager.css │ │ │ ├── jquery.galleryManager.js │ │ │ ├── jquery.galleryManager.min.js │ │ │ ├── jquery.iframe-transport.js │ │ │ └── jquery.iframe-transport.min.js │ │ ├── build.sh │ │ ├── messages │ │ │ ├── config.php │ │ │ ├── en │ │ │ │ └── main.php │ │ │ ├── ru │ │ │ │ └── main.php │ │ │ └── uk │ │ │ │ └── main.php │ │ ├── migrations │ │ │ ├── schema.migration │ │ │ ├── schema.mysql.sql │ │ │ └── schema_mysql_with_db_prefix.migration │ │ ├── models │ │ │ ├── Gallery.php │ │ │ └── GalleryPhoto.php │ │ ├── readme.md │ │ └── views │ │ │ └── galleryManager.php │ ├── image │ │ ├── .hg_archival.txt │ │ ├── CImageComponent.php │ │ ├── Image.php │ │ ├── Image_Driver.php │ │ ├── drivers │ │ │ ├── Image_GD_Driver.php │ │ │ └── Image_ImageMagick_Driver.php │ │ └── readme.txt │ ├── nestedset │ │ ├── CNestedSetBehavior.php │ │ └── TreeBehavior.php │ ├── sitemap │ │ ├── ESitemapAction.php │ │ ├── ESitemapBehavior.php │ │ ├── ESitemapModel.php │ │ ├── ESitemapTest.php │ │ ├── ESitemapXMLAction.php │ │ └── _views │ │ │ ├── sitemap.php │ │ │ └── sitemapxml.php │ └── yii-debug-toolbar │ │ ├── README.markdown │ │ ├── YiiDebug.php │ │ ├── YiiDebugComponentProxy.php │ │ ├── YiiDebugController.php │ │ ├── YiiDebugToolbar.php │ │ ├── YiiDebugToolbarPanel.php │ │ ├── YiiDebugToolbarRoute.php │ │ ├── YiiDebugViewHelper.php │ │ ├── YiiDebugViewRenderer.php │ │ ├── assets │ │ ├── arrow_collapse.gif │ │ ├── arrow_expand.gif │ │ ├── bullet_toggle_minus.png │ │ ├── bullet_toggle_plus.png │ │ ├── chronometer.png │ │ ├── close.png │ │ ├── close_hover.png │ │ ├── fonts │ │ │ ├── yii-debug.eot │ │ │ ├── yii-debug.svg │ │ │ ├── yii-debug.ttf │ │ │ └── yii-debug.woff │ │ ├── icons-reference.html │ │ ├── indicator.png │ │ ├── main.css │ │ ├── main.js │ │ ├── main_old.css │ │ ├── panel-close.png │ │ ├── panel.png │ │ ├── styles.css │ │ ├── yii-debug.zip │ │ ├── yii.debugtoolbar.css │ │ └── yii.debugtoolbar.js │ │ ├── components │ │ ├── ProxyComponent.php │ │ └── YiiDebugViewRenderer.php │ │ ├── composer.json │ │ ├── messages │ │ ├── ru │ │ │ └── yii-debug-toolbar.php │ │ └── simple │ │ │ └── yii-debug-toolbar.php │ │ ├── panels │ │ ├── YiiDebugToolbarPanelLogging.php │ │ ├── YiiDebugToolbarPanelRequest.php │ │ ├── YiiDebugToolbarPanelServer.php │ │ ├── YiiDebugToolbarPanelSettings.php │ │ ├── YiiDebugToolbarPanelSql.php │ │ ├── YiiDebugToolbarPanelViews.php │ │ └── YiiDebugToolbarPanelViewsRendering.php │ │ ├── views │ │ ├── index.php │ │ ├── layouts │ │ │ └── main.php │ │ ├── main.php │ │ ├── panels │ │ │ ├── asset.php │ │ │ ├── logging.php │ │ │ ├── request.php │ │ │ ├── server.php │ │ │ ├── settings.php │ │ │ ├── sql.php │ │ │ ├── sql │ │ │ │ ├── callstack.php │ │ │ │ ├── servers.php │ │ │ │ └── summary.php │ │ │ ├── views.php │ │ │ └── views_rendering.php │ │ └── yii_debug_toolbar.php │ │ └── widgets │ │ ├── YiiDebugToolbarResourceUsage.php │ │ └── views │ │ └── resources.php ├── messages │ └── ru │ │ └── lang.php ├── models │ ├── Adverts.php │ ├── Answer.php │ ├── Category.php │ ├── Cms.php │ ├── ConfigForm.php │ ├── ContactForm.php │ ├── Favorites.php │ ├── InstallForm.php │ ├── Messages.php │ ├── RegistrationForm.php │ ├── Reviews.php │ ├── UloginModel.php │ ├── User.php │ ├── UserChangePassword.php │ ├── UserLogin.php │ ├── UserRecoveryForm.php │ └── _ConfigForm.php ├── modules │ ├── admin │ │ ├── AdminModule.php │ │ └── controllers │ │ │ ├── AdvertsController.php │ │ │ ├── BackendController.php │ │ │ ├── CategoryController.php │ │ │ ├── DefaultController.php │ │ │ └── GalleryController.php │ └── cms │ │ ├── CmsModule.php │ │ ├── components │ │ ├── CmsHandler.php │ │ ├── Menu.php │ │ ├── TreeMenu.php │ │ └── jquery.yii.cms.js │ │ └── controllers │ │ ├── CmsController.php │ │ ├── DefaultController.php │ │ └── _InstallController.php ├── run_test.bat ├── runtime │ └── cache │ │ └── 5dcf54a7b2a7e7078983e0bc28223b39.bin ├── tests │ ├── _bootstrap.php │ ├── _data │ │ └── dump.sql │ ├── _output │ │ ├── WelcomeCept.fail.html │ │ └── failed │ ├── _support │ │ ├── AcceptanceTester.php │ │ ├── FunctionalTester.php │ │ ├── Helper │ │ │ ├── Acceptance.php │ │ │ ├── Functional.php │ │ │ └── Unit.php │ │ ├── UnitTester.php │ │ └── _generated │ │ │ ├── AcceptanceTesterActions.php │ │ │ ├── FunctionalTesterActions.php │ │ │ └── UnitTesterActions.php │ ├── acceptance.suite.yml │ ├── acceptance │ │ ├── WelcomeCept.php │ │ └── _bootstrap.php │ ├── functional.suite.yml │ ├── functional │ │ └── _bootstrap.php │ ├── unit.suite.yml │ └── unit │ │ └── _bootstrap.php ├── widgets │ ├── BulletinCategoryWidget.php │ ├── BulletinTypeWidget.php │ ├── ImageFileUploadWidget.php │ ├── JsTreeWidget.php │ ├── LastBulletinsWidget.php │ ├── ShowAdvertisementWidget.php │ ├── ShowImagesWidget.php │ ├── UloginWidget.php │ ├── advancedSearch.php │ ├── articleList.php │ └── views │ │ ├── bulletinCategoryWidget.php │ │ ├── bulletinTypeWidget.php │ │ ├── imageFileUploadWidget.php │ │ ├── lastBulletinsWidget.php │ │ ├── showAdvertisementWidget.php │ │ ├── showImagesWidget.php │ │ ├── treewidget.php │ │ └── uloginWidget.php ├── yiic ├── yiic.bat └── yiic.php └── themes └── yboard ├── css ├── Cuprum.ttf ├── admin.css ├── admin_theme.css ├── animate.css ├── bootstrap.css ├── demo.css ├── font-awesome.css ├── font-awesome.min.css ├── form.css ├── ie.css ├── main_style.css ├── print.css ├── screen.css ├── style.css ├── typicons.css └── weather-icons.css ├── fonts ├── 0448.TTF ├── ARIALN.TTF ├── ARIALNB.TTF ├── DXI1ORHCpsQm3Vp6mXoaTXhCUOGz7vYGh680lGh-uXM.woff ├── FontAwesome.otf ├── ariblk.ttf ├── cJZKeOuBrn4kERxqtaUH3T8E0i7KZn-EPnyo3HZu7kw.woff ├── fontawesome-webfont.eot ├── fontawesome-webfont.svg ├── fontawesome-webfont.ttf ├── fontawesome-webfont.woff ├── fontawesome-webfont.woff2 ├── fontawesome-webfont_1.woff ├── glyphicons-halflings-regular.woff ├── typicons.eot ├── typicons.svg ├── typicons.ttf ├── typicons.woff ├── weathericons-regular-webfont.ttf └── weathericons-regular-webfont.woff ├── images ├── active.jpg ├── active.png ├── applications-other.png ├── bg.jpg ├── body_bg.png ├── buttons │ └── mail.png ├── category │ ├── comp.jpg │ ├── mobile.jpg │ ├── nedvijimosti.jpg │ ├── rabota.jpg │ ├── stroitelstvo.jpg │ ├── transport.jpg │ └── Новая папка │ │ ├── comp.jpg │ │ ├── mobile.jpg │ │ ├── nedvijimosti.jpg │ │ ├── rabota.jpg │ │ ├── stroitelstvo.jpg │ │ └── transport.jpg ├── comments.png ├── control_panel.png ├── events.png ├── fotter.jpg ├── go.png ├── go1.png ├── header_bg.png ├── innerbanner.jpg ├── kblogger.png ├── login_01.png ├── login_02.png ├── login_03.png ├── login_button.png ├── login_button1.png ├── logo.png ├── menu_01.png ├── menu_02.png ├── menu_03.png ├── menu_04.png ├── menu_active.png ├── menu_hover.png ├── menu_top.png ├── newlinks.png ├── over.jpg ├── readmore.png ├── readmore1.png ├── registration.png ├── right_head.png ├── search.png ├── search_strip.jpg ├── services.png ├── tickmark.png ├── topbanner_bg.jpg ├── topline.jpg └── users.png ├── js ├── admin.js ├── ajaxform │ ├── form.js │ └── jquery.form.js ├── analytics.js ├── awesomechart.js ├── beyond.js ├── bootstrap.js ├── bootstrap │ ├── css │ │ ├── bootstrap-responsive.css │ │ ├── bootstrap-responsive.min.css │ │ ├── bootstrap.css │ │ └── bootstrap.min.css │ ├── img │ │ ├── glyphicons-halflings-white.png │ │ └── glyphicons-halflings.png │ ├── js │ │ ├── bootstrap-affix.js │ │ ├── bootstrap-alert.js │ │ ├── bootstrap-button.js │ │ ├── bootstrap-carousel.js │ │ ├── bootstrap-collapse.js │ │ ├── bootstrap-dropdown.js │ │ ├── bootstrap-modal.js │ │ ├── bootstrap-popover.js │ │ ├── bootstrap-scrollspy.js │ │ ├── bootstrap-tab.js │ │ ├── bootstrap-tooltip.js │ │ ├── bootstrap-transition.js │ │ ├── bootstrap-typeahead.js │ │ ├── bootstrap.js │ │ └── bootstrap.min.js │ └── less │ │ ├── accordion.less │ │ ├── alerts.less │ │ ├── bootstrap.less │ │ ├── breadcrumbs.less │ │ ├── button-groups.less │ │ ├── buttons.less │ │ ├── carousel.less │ │ ├── close.less │ │ ├── code.less │ │ ├── component-animations.less │ │ ├── dropdowns.less │ │ ├── forms.less │ │ ├── grid.less │ │ ├── hero-unit.less │ │ ├── labels-badges.less │ │ ├── layouts.less │ │ ├── media.less │ │ ├── mixins.less │ │ ├── modals.less │ │ ├── navbar.less │ │ ├── navs.less │ │ ├── pager.less │ │ ├── pagination.less │ │ ├── popovers.less │ │ ├── progress-bars.less │ │ ├── reset.less │ │ ├── responsive-1200px-min.less │ │ ├── responsive-767px-max.less │ │ ├── responsive-768px-979px.less │ │ ├── responsive-navbar.less │ │ ├── responsive-utilities.less │ │ ├── responsive.less │ │ ├── scaffolding.less │ │ ├── sprites.less │ │ ├── tables.less │ │ ├── thumbnails.less │ │ ├── tooltip.less │ │ ├── type.less │ │ ├── utilities.less │ │ ├── variables.less │ │ └── wells.less ├── cookies.js ├── easypiechart-init.js ├── fancybox2 │ ├── blank.gif │ ├── fancybox_loading.gif │ ├── fancybox_sprite.png │ ├── helpers │ │ ├── fancybox_buttons.png │ │ ├── jquery.fancybox-buttons.css │ │ ├── jquery.fancybox-buttons.js │ │ ├── jquery.fancybox-media.js │ │ ├── jquery.fancybox-thumbs.css │ │ └── jquery.fancybox-thumbs.js │ ├── jquery.fancybox.css │ ├── jquery.fancybox.js │ └── jquery.fancybox.pack.js ├── flot-init.js ├── jquery-2.js ├── jquery.fancybox.js ├── jquery.js ├── jquery_002.js ├── jquery_003.js ├── jquery_004.js ├── jquery_005.js ├── jquery_006.js ├── jquery_007.js ├── json2 │ └── json2.js ├── jstree.behavior.js ├── jstree │ ├── _demo │ │ ├── _dump.sql │ │ ├── _inc │ │ │ ├── class._database.php │ │ │ ├── class._database_i.php │ │ │ └── class.tree.php │ │ ├── _install.txt │ │ ├── config.php │ │ ├── file.png │ │ ├── folder.png │ │ ├── index.html │ │ ├── root.png │ │ └── server.php │ ├── _docs │ │ ├── !style.css │ │ ├── _drive.png │ │ ├── _html_data.html │ │ ├── _json_data.json │ │ ├── _search_data.json │ │ ├── _search_result.json │ │ ├── _xml_flat.xml │ │ ├── _xml_nest.xml │ │ ├── checkbox.html │ │ ├── contextmenu.html │ │ ├── cookies.html │ │ ├── core.html │ │ ├── crrm.html │ │ ├── dnd.html │ │ ├── hotkeys.html │ │ ├── html_data.html │ │ ├── index.html │ │ ├── json_data.html │ │ ├── languages.html │ │ ├── logo.png │ │ ├── search.html │ │ ├── sort.html │ │ ├── syntax │ │ │ ├── !script.js │ │ │ ├── !style.css │ │ │ ├── clipboard.swf │ │ │ ├── help.png │ │ │ ├── magnifier.png │ │ │ ├── page_white_code.png │ │ │ ├── page_white_copy.png │ │ │ ├── printer.png │ │ │ └── wrapping.png │ │ ├── themeroller.html │ │ ├── themes.html │ │ ├── types.html │ │ ├── ui.html │ │ ├── unique.html │ │ └── xml_data.html │ ├── _lib │ │ ├── jquery.cookie.js │ │ ├── jquery.hotkeys.js │ │ └── jquery.js │ ├── jquery.jstree.js │ └── themes │ │ ├── apple │ │ ├── bg.jpg │ │ ├── d.png │ │ ├── dot_for_ie.gif │ │ ├── style.css │ │ └── throbber.gif │ │ ├── classic │ │ ├── d.gif │ │ ├── d.png │ │ ├── dot_for_ie.gif │ │ ├── style.css │ │ └── throbber.gif │ │ ├── default-rtl │ │ ├── d.gif │ │ ├── d.png │ │ ├── dots.gif │ │ ├── style.css │ │ └── throbber.gif │ │ └── default │ │ ├── d.gif │ │ ├── d.png │ │ ├── style.css │ │ └── throbber.gif ├── noty │ ├── LICENSE.txt │ ├── README.markdown │ ├── demo │ │ ├── allLayouts.html │ │ ├── allTypes.html │ │ ├── api.html │ │ ├── buttons.css │ │ ├── consumingAlert.html │ │ ├── customContainer.html │ │ ├── index.html │ │ ├── jquery-1.7.2.min.js │ │ ├── usingWithButtons.html │ │ ├── usingWithButtons2.html │ │ ├── usingWithModal.html │ │ └── usingWithOldOptions.html │ └── js │ │ └── noty │ │ ├── jquery.noty.js │ │ ├── layouts │ │ ├── bottom.js │ │ ├── bottomCenter.js │ │ ├── bottomLeft.js │ │ ├── bottomRight.js │ │ ├── center.js │ │ ├── centerLeft.js │ │ ├── centerRight.js │ │ ├── inline.js │ │ ├── top.js │ │ ├── topCenter.js │ │ ├── topLeft.js │ │ └── topRight.js │ │ ├── promise.js │ │ └── themes │ │ └── default.js ├── skins.js ├── sparkline-init.js ├── spin.min.js └── yboard.js └── views ├── admin ├── admin-template.php ├── adverts │ ├── _form.php │ ├── _index.php │ ├── _search.php │ ├── _view.php │ ├── create.php │ ├── index.php │ ├── update.php │ └── view.php ├── answer │ ├── _form.php │ ├── _search.php │ ├── _view.php │ ├── admin.php │ ├── create.php │ ├── index.php │ ├── update.php │ └── view.php ├── banners.php ├── category │ ├── _form.php │ ├── _search.php │ ├── _view.php │ ├── admin.php │ ├── create.php │ ├── index.php │ ├── update.php │ └── view.php └── default │ ├── config.php │ ├── help.php │ └── index.php ├── adverts ├── _form.php ├── _view.php ├── _view_short.php ├── category.php ├── create.php ├── index.php ├── update.php └── view.php ├── answer ├── _view.php └── index.php ├── cms ├── _install │ └── index.php ├── cms │ ├── admin.php │ ├── create.php │ ├── default.php │ ├── forms │ │ ├── link.php │ │ ├── page.php │ │ ├── pageset.php │ │ └── root.php │ ├── index.php │ ├── update.php │ ├── view.php │ └── view │ │ ├── link.php │ │ ├── page.php │ │ ├── pageset.php │ │ └── root.php ├── default.php ├── error.php ├── layouts │ └── cms.php ├── sections │ ├── index.php │ └── section_sample.php └── subsections │ └── subsection_sample.php ├── company ├── _form.php ├── _search.php ├── _view.php ├── admin.php ├── create.php ├── index.php ├── update.php └── view.php ├── favorites ├── _form.php ├── _search.php ├── _view.php ├── admin.php ├── create.php ├── index.php ├── update.php └── view.php ├── install-layout.php ├── mail └── delivery.php ├── main-template.php ├── messages ├── _form.php ├── _list.php ├── _search.php ├── _view.php ├── admin.php ├── create.php ├── dialog.php ├── index.php ├── update.php └── view.php ├── recovery ├── changepassword.php └── recovery.php ├── reviews ├── _form.php ├── _search.php ├── _view.php ├── admin.php ├── create.php ├── index.php ├── update.php └── view.php ├── site ├── _view.php ├── advertisement.php ├── error.php ├── index.php ├── install.php ├── login.php ├── pages │ └── about.php ├── search.php ├── sitemap.php └── sitemapxml.php └── user ├── _form.php ├── index.php ├── login.php ├── message.php ├── registration.php ├── update.php └── view.php /.htaccess: -------------------------------------------------------------------------------- 1 | Options +FollowSymLinks 2 | IndexIgnore */* 3 | RewriteEngine on 4 | 5 | ## Completely hide some files and directories. 6 | RedirectMatch 404 "(?:.*)/(?:[.#].*)$" 7 | RedirectMatch 404 "(?:.*)~$" 8 | RedirectMatch 404 "(?:.*)/(?:CVS|RCS|_darcs)(?:/.*)?$" 9 | 10 | # if a directory or a file exists, use it directly 11 | RewriteCond %{REQUEST_FILENAME} !-f 12 | RewriteCond %{REQUEST_FILENAME} !-d 13 | 14 | # otherwise forward it to index.php 15 | RewriteRule . index.php -------------------------------------------------------------------------------- /assets/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/assets/index.php -------------------------------------------------------------------------------- /gallery/.hgkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/.hgkeep -------------------------------------------------------------------------------- /gallery/334.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/334.jpg -------------------------------------------------------------------------------- /gallery/334medium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/334medium.jpg -------------------------------------------------------------------------------- /gallery/334small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/334small.jpg -------------------------------------------------------------------------------- /gallery/335.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/335.jpg -------------------------------------------------------------------------------- /gallery/335medium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/335medium.jpg -------------------------------------------------------------------------------- /gallery/335small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/335small.jpg -------------------------------------------------------------------------------- /gallery/336.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/336.jpg -------------------------------------------------------------------------------- /gallery/336medium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/336medium.jpg -------------------------------------------------------------------------------- /gallery/336small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/336small.jpg -------------------------------------------------------------------------------- /gallery/337.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/337.jpg -------------------------------------------------------------------------------- /gallery/337medium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/337medium.jpg -------------------------------------------------------------------------------- /gallery/337small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/337small.jpg -------------------------------------------------------------------------------- /gallery/338.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/338.jpg -------------------------------------------------------------------------------- /gallery/338medium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/338medium.jpg -------------------------------------------------------------------------------- /gallery/338small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/338small.jpg -------------------------------------------------------------------------------- /gallery/339.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/339.jpg -------------------------------------------------------------------------------- /gallery/339medium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/339medium.jpg -------------------------------------------------------------------------------- /gallery/339small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/339small.jpg -------------------------------------------------------------------------------- /gallery/340.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/340.jpg -------------------------------------------------------------------------------- /gallery/340medium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/340medium.jpg -------------------------------------------------------------------------------- /gallery/340small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/340small.jpg -------------------------------------------------------------------------------- /gallery/341.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/341.jpg -------------------------------------------------------------------------------- /gallery/341medium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/341medium.jpg -------------------------------------------------------------------------------- /gallery/341small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/341small.jpg -------------------------------------------------------------------------------- /gallery/342.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/342.jpg -------------------------------------------------------------------------------- /gallery/342medium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/342medium.jpg -------------------------------------------------------------------------------- /gallery/342small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/342small.jpg -------------------------------------------------------------------------------- /gallery/343.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/343.jpg -------------------------------------------------------------------------------- /gallery/343medium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/343medium.jpg -------------------------------------------------------------------------------- /gallery/343small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/343small.jpg -------------------------------------------------------------------------------- /gallery/344.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/344.jpg -------------------------------------------------------------------------------- /gallery/344medium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/344medium.jpg -------------------------------------------------------------------------------- /gallery/344small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/344small.jpg -------------------------------------------------------------------------------- /gallery/345.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/345.jpg -------------------------------------------------------------------------------- /gallery/345small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/345small.jpg -------------------------------------------------------------------------------- /gallery/346.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/346.jpg -------------------------------------------------------------------------------- /gallery/346medium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/346medium.jpg -------------------------------------------------------------------------------- /gallery/346small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/346small.jpg -------------------------------------------------------------------------------- /gallery/347.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/347.jpg -------------------------------------------------------------------------------- /gallery/347medium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/347medium.jpg -------------------------------------------------------------------------------- /gallery/347small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/347small.jpg -------------------------------------------------------------------------------- /gallery/348.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/348.jpg -------------------------------------------------------------------------------- /gallery/348medium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/348medium.jpg -------------------------------------------------------------------------------- /gallery/348small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/348small.jpg -------------------------------------------------------------------------------- /gallery/349.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/349.jpg -------------------------------------------------------------------------------- /gallery/349medium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/349medium.jpg -------------------------------------------------------------------------------- /gallery/349small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/349small.jpg -------------------------------------------------------------------------------- /gallery/350.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/350.jpg -------------------------------------------------------------------------------- /gallery/350medium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/350medium.jpg -------------------------------------------------------------------------------- /gallery/350small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/350small.jpg -------------------------------------------------------------------------------- /gallery/351.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/351.jpg -------------------------------------------------------------------------------- /gallery/351medium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/351medium.jpg -------------------------------------------------------------------------------- /gallery/351small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/351small.jpg -------------------------------------------------------------------------------- /gallery/352.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/352.jpg -------------------------------------------------------------------------------- /gallery/352medium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/352medium.jpg -------------------------------------------------------------------------------- /gallery/352small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/352small.jpg -------------------------------------------------------------------------------- /gallery/_334.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/_334.jpg -------------------------------------------------------------------------------- /gallery/_335.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/_335.jpg -------------------------------------------------------------------------------- /gallery/_336.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/_336.jpg -------------------------------------------------------------------------------- /gallery/_337.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/_337.jpg -------------------------------------------------------------------------------- /gallery/_338.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/_338.jpg -------------------------------------------------------------------------------- /gallery/_339.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/_339.jpg -------------------------------------------------------------------------------- /gallery/_340.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/_340.jpg -------------------------------------------------------------------------------- /gallery/_341.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/_341.jpg -------------------------------------------------------------------------------- /gallery/_342.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/_342.jpg -------------------------------------------------------------------------------- /gallery/_343.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/_343.jpg -------------------------------------------------------------------------------- /gallery/_344.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/_344.jpg -------------------------------------------------------------------------------- /gallery/_345.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/_345.jpg -------------------------------------------------------------------------------- /gallery/_346.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/_346.jpg -------------------------------------------------------------------------------- /gallery/_347.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/_347.jpg -------------------------------------------------------------------------------- /gallery/_348.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/_348.jpg -------------------------------------------------------------------------------- /gallery/_349.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/_349.jpg -------------------------------------------------------------------------------- /gallery/_350.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/_350.jpg -------------------------------------------------------------------------------- /gallery/_351.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/_351.jpg -------------------------------------------------------------------------------- /gallery/_352.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/_352.jpg -------------------------------------------------------------------------------- /gallery/noimage.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/gallery/noimage.gif -------------------------------------------------------------------------------- /install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/install -------------------------------------------------------------------------------- /protected/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all 2 | -------------------------------------------------------------------------------- /protected/codecept.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/codecept.phar -------------------------------------------------------------------------------- /protected/codeception.yml: -------------------------------------------------------------------------------- 1 | actor: Tester 2 | paths: 3 | tests: tests 4 | log: tests/_output 5 | data: tests/_data 6 | support: tests/_support 7 | envs: tests/_envs 8 | settings: 9 | bootstrap: _bootstrap.php 10 | colors: false 11 | memory_limit: 1024M 12 | extensions: 13 | enabled: 14 | - Codeception\Extension\RunFailed 15 | modules: 16 | config: 17 | Db: 18 | dsn: '' 19 | user: '' 20 | password: '' 21 | dump: tests/_data/dump.sql 22 | -------------------------------------------------------------------------------- /protected/config/banners.php: -------------------------------------------------------------------------------- 1 | array( 16 | 'condition'=>'status>'.User::STATUS_BANNED, 17 | ), 18 | 'pagination'=>array( 19 | 'pageSize'=>Yii::app()->controller->module->user_page_size, 20 | ), 21 | )); 22 | 23 | $this->render('/user/index',array( 24 | 'dataProvider'=>$dataProvider, 25 | )); 26 | } 27 | 28 | } -------------------------------------------------------------------------------- /protected/extensions/.hgkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/.hgkeep -------------------------------------------------------------------------------- /protected/extensions/bootstrap/assets/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/bootstrap/assets/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /protected/extensions/bootstrap/assets/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/bootstrap/assets/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /protected/extensions/bootstrap/assets/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/bootstrap/assets/img/loading.gif -------------------------------------------------------------------------------- /protected/extensions/bootstrap/assets/less/accordion.less: -------------------------------------------------------------------------------- 1 | // 2 | // Accordion 3 | // -------------------------------------------------- 4 | 5 | 6 | // Parent container 7 | .accordion { 8 | margin-bottom: @baseLineHeight; 9 | } 10 | 11 | // Group == heading + body 12 | .accordion-group { 13 | margin-bottom: 2px; 14 | border: 1px solid #e5e5e5; 15 | .border-radius(@baseBorderRadius); 16 | } 17 | .accordion-heading { 18 | border-bottom: 0; 19 | } 20 | .accordion-heading .accordion-toggle { 21 | display: block; 22 | padding: 8px 15px; 23 | } 24 | 25 | // General toggle styles 26 | .accordion-toggle { 27 | cursor: pointer; 28 | } 29 | 30 | // Inner needs the styles because you can't animate properly with any styles on the element 31 | .accordion-inner { 32 | padding: 9px 15px; 33 | border-top: 1px solid #e5e5e5; 34 | } 35 | -------------------------------------------------------------------------------- /protected/extensions/bootstrap/assets/less/breadcrumbs.less: -------------------------------------------------------------------------------- 1 | // 2 | // Breadcrumbs 3 | // -------------------------------------------------- 4 | 5 | 6 | .breadcrumb { 7 | padding: 8px 15px; 8 | margin: 0 0 @baseLineHeight; 9 | list-style: none; 10 | background-color: #f5f5f5; 11 | .border-radius(@baseBorderRadius); 12 | > li { 13 | display: inline-block; 14 | .ie7-inline-block(); 15 | text-shadow: 0 1px 0 @white; 16 | > .divider { 17 | padding: 0 5px; 18 | color: #ccc; 19 | } 20 | } 21 | > .active { 22 | color: @grayLight; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /protected/extensions/bootstrap/assets/less/close.less: -------------------------------------------------------------------------------- 1 | // 2 | // Close icons 3 | // -------------------------------------------------- 4 | 5 | 6 | .close { 7 | float: right; 8 | font-size: 20px; 9 | font-weight: bold; 10 | line-height: @baseLineHeight; 11 | color: @black; 12 | text-shadow: 0 1px 0 rgba(255,255,255,1); 13 | .opacity(20); 14 | &:hover, 15 | &:focus { 16 | color: @black; 17 | text-decoration: none; 18 | cursor: pointer; 19 | .opacity(40); 20 | } 21 | } 22 | 23 | // Additional properties for button version 24 | // iOS requires the button element instead of an anchor tag. 25 | // If you want the anchor version, it requires `href="#"`. 26 | button.close { 27 | padding: 0; 28 | cursor: pointer; 29 | background: transparent; 30 | border: 0; 31 | -webkit-appearance: none; 32 | } -------------------------------------------------------------------------------- /protected/extensions/bootstrap/assets/less/component-animations.less: -------------------------------------------------------------------------------- 1 | // 2 | // Component animations 3 | // -------------------------------------------------- 4 | 5 | 6 | .fade { 7 | opacity: 0; 8 | .transition(opacity .15s linear); 9 | &.in { 10 | opacity: 1; 11 | } 12 | } 13 | 14 | .collapse { 15 | position: relative; 16 | height: 0; 17 | overflow: hidden; 18 | .transition(height .35s ease); 19 | &.in { 20 | height: auto; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /protected/extensions/bootstrap/assets/less/grid.less: -------------------------------------------------------------------------------- 1 | // 2 | // Grid system 3 | // -------------------------------------------------- 4 | 5 | 6 | // Fixed (940px) 7 | #grid > .core(@gridColumnWidth, @gridGutterWidth); 8 | 9 | // Fluid (940px) 10 | #grid > .fluid(@fluidGridColumnWidth, @fluidGridGutterWidth); 11 | 12 | // Reset utility classes due to specificity 13 | [class*="span"].hide, 14 | .row-fluid [class*="span"].hide { 15 | display: none; 16 | } 17 | 18 | [class*="span"].pull-right, 19 | .row-fluid [class*="span"].pull-right { 20 | float: right; 21 | } 22 | -------------------------------------------------------------------------------- /protected/extensions/bootstrap/assets/less/hero-unit.less: -------------------------------------------------------------------------------- 1 | // 2 | // Hero unit 3 | // -------------------------------------------------- 4 | 5 | 6 | .hero-unit { 7 | padding: 60px; 8 | margin-bottom: 30px; 9 | font-size: 18px; 10 | font-weight: 200; 11 | line-height: @baseLineHeight * 1.5; 12 | color: @heroUnitLeadColor; 13 | background-color: @heroUnitBackground; 14 | .border-radius(6px); 15 | h1 { 16 | margin-bottom: 0; 17 | font-size: 60px; 18 | line-height: 1; 19 | color: @heroUnitHeadingColor; 20 | letter-spacing: -1px; 21 | } 22 | li { 23 | line-height: @baseLineHeight * 1.5; // Reset since we specify in type.less 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /protected/extensions/bootstrap/assets/less/layouts.less: -------------------------------------------------------------------------------- 1 | // 2 | // Layouts 3 | // -------------------------------------------------- 4 | 5 | 6 | // Container (centered, fixed-width layouts) 7 | .container { 8 | .container-fixed(); 9 | } 10 | 11 | // Fluid layouts (left aligned, with sidebar, min- & max-width content) 12 | .container-fluid { 13 | padding-right: @gridGutterWidth; 14 | padding-left: @gridGutterWidth; 15 | .clearfix(); 16 | } -------------------------------------------------------------------------------- /protected/extensions/bootstrap/assets/less/pager.less: -------------------------------------------------------------------------------- 1 | // 2 | // Pager pagination 3 | // -------------------------------------------------- 4 | 5 | 6 | .pager { 7 | margin: @baseLineHeight 0; 8 | list-style: none; 9 | text-align: center; 10 | .clearfix(); 11 | } 12 | .pager li { 13 | display: inline; 14 | } 15 | .pager li > a, 16 | .pager li > span { 17 | display: inline-block; 18 | padding: 5px 14px; 19 | background-color: #fff; 20 | border: 1px solid #ddd; 21 | .border-radius(15px); 22 | } 23 | .pager li > a:hover, 24 | .pager li > a:focus { 25 | text-decoration: none; 26 | background-color: #f5f5f5; 27 | } 28 | .pager .next > a, 29 | .pager .next > span { 30 | float: right; 31 | } 32 | .pager .previous > a, 33 | .pager .previous > span { 34 | float: left; 35 | } 36 | .pager .disabled > a, 37 | .pager .disabled > a:hover, 38 | .pager .disabled > a:focus, 39 | .pager .disabled > span { 40 | color: @grayLight; 41 | background-color: #fff; 42 | cursor: default; 43 | } -------------------------------------------------------------------------------- /protected/extensions/bootstrap/assets/less/responsive-1200px-min.less: -------------------------------------------------------------------------------- 1 | // 2 | // Responsive: Large desktop and up 3 | // -------------------------------------------------- 4 | 5 | 6 | @media (min-width: 1200px) { 7 | 8 | // Fixed grid 9 | #grid > .core(@gridColumnWidth1200, @gridGutterWidth1200); 10 | 11 | // Fluid grid 12 | #grid > .fluid(@fluidGridColumnWidth1200, @fluidGridGutterWidth1200); 13 | 14 | // Input grid 15 | #grid > .input(@gridColumnWidth1200, @gridGutterWidth1200); 16 | 17 | // Thumbnails 18 | .thumbnails { 19 | margin-left: -@gridGutterWidth1200; 20 | } 21 | .thumbnails > li { 22 | margin-left: @gridGutterWidth1200; 23 | } 24 | .row-fluid .thumbnails { 25 | margin-left: 0; 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /protected/extensions/bootstrap/assets/less/responsive-768px-979px.less: -------------------------------------------------------------------------------- 1 | // 2 | // Responsive: Tablet to desktop 3 | // -------------------------------------------------- 4 | 5 | 6 | @media (min-width: 768px) and (max-width: 979px) { 7 | 8 | // Fixed grid 9 | #grid > .core(@gridColumnWidth768, @gridGutterWidth768); 10 | 11 | // Fluid grid 12 | #grid > .fluid(@fluidGridColumnWidth768, @fluidGridGutterWidth768); 13 | 14 | // Input grid 15 | #grid > .input(@gridColumnWidth768, @gridGutterWidth768); 16 | 17 | // No need to reset .thumbnails here since it's the same @gridGutterWidth 18 | 19 | } 20 | -------------------------------------------------------------------------------- /protected/extensions/bootstrap/assets/less/utilities.less: -------------------------------------------------------------------------------- 1 | // 2 | // Utility classes 3 | // -------------------------------------------------- 4 | 5 | 6 | // Quick floats 7 | .pull-right { 8 | float: right; 9 | } 10 | .pull-left { 11 | float: left; 12 | } 13 | 14 | // Toggling content 15 | .hide { 16 | display: none; 17 | } 18 | .show { 19 | display: block; 20 | } 21 | 22 | // Visibility 23 | .invisible { 24 | visibility: hidden; 25 | } 26 | 27 | // For Affix plugin 28 | .affix { 29 | position: fixed; 30 | } 31 | -------------------------------------------------------------------------------- /protected/extensions/bootstrap/assets/less/wells.less: -------------------------------------------------------------------------------- 1 | // 2 | // Wells 3 | // -------------------------------------------------- 4 | 5 | 6 | // Base class 7 | .well { 8 | min-height: 20px; 9 | padding: 19px; 10 | margin-bottom: 20px; 11 | background-color: @wellBackground; 12 | border: 1px solid darken(@wellBackground, 7%); 13 | .border-radius(@baseBorderRadius); 14 | .box-shadow(inset 0 1px 1px rgba(0,0,0,.05)); 15 | blockquote { 16 | border-color: #ddd; 17 | border-color: rgba(0,0,0,.15); 18 | } 19 | } 20 | 21 | // Sizes 22 | .well-large { 23 | padding: 24px; 24 | .border-radius(@borderRadiusLarge); 25 | } 26 | .well-small { 27 | padding: 9px; 28 | .border-radius(@borderRadiusSmall); 29 | } 30 | -------------------------------------------------------------------------------- /protected/extensions/bootstrap/gii/bootstrap/BootstrapGenerator.php: -------------------------------------------------------------------------------- 1 | 5 | * @copyright Copyright © Christoffer Niska 2011- 6 | * @license http://www.opensource.org/licenses/bsd-license.php New BSD License 7 | */ 8 | 9 | Yii::import('gii.generators.crud.CrudGenerator'); 10 | 11 | class BootstrapGenerator extends CrudGenerator 12 | { 13 | public $codeModel = 'bootstrap.gii.bootstrap.BootstrapCode'; 14 | } -------------------------------------------------------------------------------- /protected/extensions/bootstrap/gii/bootstrap/templates/default/_search.php: -------------------------------------------------------------------------------- 1 | 7 | beginWidget('bootstrap.widgets.TbActiveForm',array( 8 | 'action'=>Yii::app()->createUrl(\$this->route), 9 | 'method'=>'get', 10 | )); ?>\n"; ?> 11 | 12 | tableSchema->columns as $column): ?> 13 | generateInputField($this->modelClass,$column); 15 | if(strpos($field,'password')!==false) 16 | continue; 17 | ?> 18 | generateActiveRow($this->modelClass,$column)."; ?>\n"; ?> 19 | 20 | 21 |
22 | widget('bootstrap.widgets.TbButton', array( 23 | 'buttonType'=>'submit', 24 | 'type'=>'primary', 25 | 'label'=>'Search', 26 | )); ?>\n"; ?> 27 |
28 | 29 | endWidget(); ?>\n"; ?> 30 | -------------------------------------------------------------------------------- /protected/extensions/bootstrap/gii/bootstrap/templates/default/_view.php: -------------------------------------------------------------------------------- 1 | 7 |
8 | 9 | getAttributeLabel('{$this->tableSchema->primaryKey}')); ?>:\n"; 11 | echo "\t{$this->tableSchema->primaryKey}),array('view','id'=>\$data->{$this->tableSchema->primaryKey})); ?>\n\t
\n\n"; 12 | $count=0; 13 | foreach($this->tableSchema->columns as $column) 14 | { 15 | if($column->isPrimaryKey) 16 | continue; 17 | if(++$count==7) 18 | echo "\tgetAttributeLabel('{$column->name}')); ?>:\n"; 20 | echo "\t{$column->name}); ?>\n\t
\n\n"; 21 | } 22 | if($count>=7) 23 | echo "\t*/ ?>\n"; 24 | ?> 25 | 26 |
-------------------------------------------------------------------------------- /protected/extensions/bootstrap/gii/bootstrap/templates/default/create.php: -------------------------------------------------------------------------------- 1 | 7 | pluralize($this->class2name($this->modelClass)); 10 | echo "\$this->breadcrumbs=array( 11 | '$label'=>array('index'), 12 | 'Create', 13 | );\n"; 14 | ?> 15 | 16 | $this->menu=array( 17 | array('label'=>'List modelClass; ?>','url'=>array('index')), 18 | array('label'=>'Manage modelClass; ?>','url'=>array('admin')), 19 | ); 20 | ?> 21 | 22 |

Create modelClass; ?>

23 | 24 | renderPartial('_form', array('model'=>\$model)); ?>"; ?> 25 | -------------------------------------------------------------------------------- /protected/extensions/bootstrap/gii/bootstrap/templates/default/index.php: -------------------------------------------------------------------------------- 1 | 7 | pluralize($this->class2name($this->modelClass)); 10 | echo "\$this->breadcrumbs=array( 11 | '$label', 12 | );\n"; 13 | ?> 14 | 15 | $this->menu=array( 16 | array('label'=>'Create modelClass; ?>','url'=>array('create')), 17 | array('label'=>'Manage modelClass; ?>','url'=>array('admin')), 18 | ); 19 | ?> 20 | 21 |

22 | 23 | $this->widget('bootstrap.widgets.TbListView',array( 24 | 'dataProvider'=>$dataProvider, 25 | 'itemView'=>'_view', 26 | )); ?> 27 | -------------------------------------------------------------------------------- /protected/extensions/bootstrap/theme/css/styles.css: -------------------------------------------------------------------------------- 1 | #page { 2 | padding-top: 60px; 3 | } -------------------------------------------------------------------------------- /protected/extensions/bootstrap/theme/views/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all 2 | -------------------------------------------------------------------------------- /protected/extensions/bootstrap/theme/views/layouts/column2.php: -------------------------------------------------------------------------------- 1 | 2 | beginContent('//layouts/main'); ?> 3 |
4 |
5 |
6 | 7 |
8 |
9 |
10 | 22 |
23 |
24 | endContent(); ?> -------------------------------------------------------------------------------- /protected/extensions/bootstrap/theme/views/site/index.php: -------------------------------------------------------------------------------- 1 | pageTitle=Yii::app()->name; 5 | ?> 6 | 7 | beginWidget('bootstrap.widgets.TbHeroUnit',array( 8 | 'heading'=>'Welcome to '.CHtml::encode(Yii::app()->name), 9 | )); ?> 10 | 11 |

Congratulations! You have successfully created your Yii application.

12 | 13 | endWidget(); ?> 14 | 15 |

You may change the content of this page by modifying the following two files:

16 | 17 | 21 | 22 |

For more details on how to further develop this application, please read 23 | the documentation. 24 | Feel free to ask in the forum, 25 | should you have any questions.

26 | -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/config.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.editorConfig = function( config ) 7 | { 8 | // Define changes to default configuration here. For example: 9 | // config.language = 'fr'; 10 | // config.uiColor = '#AADC6E'; 11 | }; 12 | -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/images/spacer.gif -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/plugins/about/dialogs/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/plugins/about/dialogs/logo_ckeditor.png -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/plugins/about/plugin.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.add('about',{init:function(a){var b=a.addCommand('about',new CKEDITOR.dialogCommand('about'));b.modes={wysiwyg:1,source:1};b.canUndo=false;a.ui.addButton('About',{label:a.lang.about.title,command:'about'});CKEDITOR.dialog.add('about',this.path+'dialogs/about.js');}}); 7 | -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/plugins/dialog/dialogDefinition.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/plugins/find/plugin.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.add('find',{init:function(a){var b=CKEDITOR.plugins.find;a.ui.addButton('Find',{label:a.lang.findAndReplace.find,command:'find'});var c=a.addCommand('find',new CKEDITOR.dialogCommand('find'));c.canUndo=false;a.ui.addButton('Replace',{label:a.lang.findAndReplace.replace,command:'replace'});var d=a.addCommand('replace',new CKEDITOR.dialogCommand('replace'));d.canUndo=false;CKEDITOR.dialog.add('find',this.path+'dialogs/find.js');CKEDITOR.dialog.add('replace',this.path+'dialogs/find.js');},requires:['styles']});CKEDITOR.config.find_highlight={element:'span',styles:{'background-color':'#004',color:'#fff'}}; 7 | -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/plugins/flash/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/plugins/flash/images/placeholder.png -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/plugins/horizontalrule/plugin.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | (function(){var a={exec:function(c){c.insertElement(c.document.createElement('hr'));}},b='horizontalrule';CKEDITOR.plugins.add(b,{init:function(c){c.addCommand(b,a);c.ui.addButton('HorizontalRule',{label:c.lang.horizontalrule,command:b});}});})(); 7 | -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/plugins/image/plugin.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.add('image',{init:function(a){var b='image';CKEDITOR.dialog.add(b,this.path+'dialogs/image.js');a.addCommand(b,new CKEDITOR.dialogCommand(b));a.ui.addButton('Image',{label:a.lang.common.image,command:b});if(a.addMenuItems)a.addMenuItems({image:{label:a.lang.image.menu,command:'image',group:'image'}});if(a.contextMenu)a.contextMenu.addListener(function(c,d){if(!c||!c.is('img')||c.getAttribute('_cke_realelement'))return null;return{image:CKEDITOR.TRISTATE_OFF};});}});CKEDITOR.config.image_removeLinkByEmptyURL=true; 7 | -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/plugins/link/images/anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/plugins/link/images/anchor.gif -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/plugins/newpage/plugin.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.add('newpage',{init:function(a){a.addCommand('newpage',{modes:{wysiwyg:1,source:1},exec:function(b){var c=this;function d(){setTimeout(function(){b.fire('afterCommandExec',{name:c.name,command:c});},500);};if(b.mode=='wysiwyg')b.on('contentDom',function(e){e.removeListener();d();});b.setData(b.config.newpage_html);b.focus();if(b.mode=='source')d();},async:true});a.ui.addButton('NewPage',{label:a.lang.newPage,command:'newpage'});}});CKEDITOR.config.newpage_html=''; 7 | -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/plugins/pagebreak/images/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/plugins/pagebreak/images/pagebreak.gif -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/plugins/pastefromword/plugin.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.add('pastefromword',{init:function(a){a.addCommand('pastefromword',new CKEDITOR.dialogCommand('pastefromword'));a.ui.addButton('PasteFromWord',{label:a.lang.pastefromword.toolbar,command:'pastefromword'});CKEDITOR.dialog.add('pastefromword',this.path+'dialogs/pastefromword.js');}});CKEDITOR.config.pasteFromWordIgnoreFontFace=true;CKEDITOR.config.pasteFromWordRemoveStyle=false;CKEDITOR.config.pasteFromWordKeepsStructure=false; 7 | -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/plugins/pastetext/dialogs/pastetext.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | (function(){CKEDITOR.dialog.add('pastetext',function(a){return{title:a.lang.pasteText.title,minWidth:CKEDITOR.env.ie&&CKEDITOR.env.quirks?368:350,minHeight:240,onShow:function(){this.getContentElement('general','content').getInputElement().setValue('');},onOk:function(){var b=this.getContentElement('general','content').getInputElement().getValue();this.getParentEditor().insertText(b);},contents:[{label:a.lang.common.generalTab,id:'general',elements:[{type:'html',id:'pasteMsg',html:'
'+a.lang.clipboard.pasteMsg+'
'},{type:'html',id:'content',style:'width:340px;height:170px',html:'',focus:function(){this.getElement().focus();}}]}]};});})(); 7 | -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/plugins/popup/plugin.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.add('popup');CKEDITOR.tools.extend(CKEDITOR.editor.prototype,{popup:function(a,b,c){b=b||'80%';c=c||'70%';if(typeof b=='string'&&b.length>1&&b.substr(b.length-1,1)=='%')b=parseInt(window.screen.width*parseInt(b,10)/100,10);if(typeof c=='string'&&c.length>1&&c.substr(c.length-1,1)=='%')c=parseInt(window.screen.height*parseInt(c,10)/100,10);if(b<640)b=640;if(c<420)c=420;var d=parseInt((window.screen.height-c)/(2),10),e=parseInt((window.screen.width-b)/(2),10),f='location=no,menubar=no,toolbar=no,dependent=yes,minimizable=no,modal=yes,alwaysRaised=yes,resizable=yes,width='+b+',height='+c+',top='+d+',left='+e,g=window.open('',null,f,true);if(!g)return false;try{g.moveTo(e,d);g.resizeTo(b,c);g.focus();g.location.href=a;}catch(h){g=window.open(a,null,f,true);}return true;}}); 7 | -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/plugins/print/plugin.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.add('print',{init:function(a){var b='print',c=a.addCommand(b,CKEDITOR.plugins.print);a.ui.addButton('Print',{label:a.lang.print,command:b});}});CKEDITOR.plugins.print={exec:function(a){if(CKEDITOR.env.opera)return;else if(CKEDITOR.env.gecko)a.window.$.print();else a.document.$.execCommand('Print');},canUndo:false,modes:{wysiwyg:!CKEDITOR.env.opera}}; 7 | -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/plugins/save/plugin.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | (function(){var a={modes:{wysiwyg:1,source:1},exec:function(c){var d=c.element.$.form;if(d)try{d.submit();}catch(e){if(d.submit.click)d.submit.click();}}},b='save';CKEDITOR.plugins.add(b,{init:function(c){var d=c.addCommand(b,a);d.modes={wysiwyg:!!c.element.$.form};c.ui.addButton('Save',{label:c.lang.save,command:b});}});})(); 7 | -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/plugins/showblocks/images/block_address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/plugins/showblocks/images/block_address.png -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/plugins/showblocks/images/block_blockquote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/plugins/showblocks/images/block_blockquote.png -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/plugins/showblocks/images/block_div.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/plugins/showblocks/images/block_div.png -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/plugins/showblocks/images/block_h1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/plugins/showblocks/images/block_h1.png -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/plugins/showblocks/images/block_h2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/plugins/showblocks/images/block_h2.png -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/plugins/showblocks/images/block_h3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/plugins/showblocks/images/block_h3.png -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/plugins/showblocks/images/block_h4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/plugins/showblocks/images/block_h4.png -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/plugins/showblocks/images/block_h5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/plugins/showblocks/images/block_h5.png -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/plugins/showblocks/images/block_h6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/plugins/showblocks/images/block_h6.png -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/plugins/showblocks/images/block_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/plugins/showblocks/images/block_p.png -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/plugins/showblocks/images/block_pre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/plugins/showblocks/images/block_pre.png -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/plugins/smiley/images/angel_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/plugins/smiley/images/angel_smile.gif -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/plugins/smiley/images/angry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/plugins/smiley/images/angry_smile.gif -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/plugins/smiley/images/broken_heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/plugins/smiley/images/broken_heart.gif -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/plugins/smiley/images/confused_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/plugins/smiley/images/confused_smile.gif -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/plugins/smiley/images/cry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/plugins/smiley/images/cry_smile.gif -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/plugins/smiley/images/devil_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/plugins/smiley/images/devil_smile.gif -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/plugins/smiley/images/embaressed_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/plugins/smiley/images/embaressed_smile.gif -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/plugins/smiley/images/envelope.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/plugins/smiley/images/envelope.gif -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/plugins/smiley/images/heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/plugins/smiley/images/heart.gif -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/plugins/smiley/images/kiss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/plugins/smiley/images/kiss.gif -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/plugins/smiley/images/lightbulb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/plugins/smiley/images/lightbulb.gif -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/plugins/smiley/images/omg_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/plugins/smiley/images/omg_smile.gif -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/plugins/smiley/images/regular_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/plugins/smiley/images/regular_smile.gif -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/plugins/smiley/images/sad_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/plugins/smiley/images/sad_smile.gif -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/plugins/smiley/images/shades_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/plugins/smiley/images/shades_smile.gif -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/plugins/smiley/images/teeth_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/plugins/smiley/images/teeth_smile.gif -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/plugins/smiley/images/thumbs_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/plugins/smiley/images/thumbs_down.gif -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/plugins/smiley/images/thumbs_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/plugins/smiley/images/thumbs_up.gif -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/plugins/smiley/images/tounge_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/plugins/smiley/images/tounge_smile.gif -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/plugins/smiley/images/whatchutalkingabout_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/plugins/smiley/images/whatchutalkingabout_smile.gif -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/plugins/smiley/images/wink_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/plugins/smiley/images/wink_smile.gif -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/plugins/specialchar/plugin.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.add('specialchar',{init:function(a){var b='specialchar';CKEDITOR.dialog.add(b,this.path+'dialogs/specialchar.js');a.addCommand(b,new CKEDITOR.dialogCommand(b));a.ui.addButton('SpecialChar',{label:a.lang.specialChar.toolbar,command:b});}}); 7 | -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/plugins/table/plugin.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.add('table',{init:function(a){var b=CKEDITOR.plugins.table,c=a.lang.table;a.addCommand('table',new CKEDITOR.dialogCommand('table'));a.addCommand('tableProperties',new CKEDITOR.dialogCommand('tableProperties'));a.ui.addButton('Table',{label:c.toolbar,command:'table'});CKEDITOR.dialog.add('table',this.path+'dialogs/table.js');CKEDITOR.dialog.add('tableProperties',this.path+'dialogs/table.js');if(a.addMenuItems)a.addMenuItems({table:{label:c.menu,command:'tableProperties',group:'table',order:5},tabledelete:{label:c.deleteTable,command:'tableDelete',group:'table',order:1}});if(a.contextMenu)a.contextMenu.addListener(function(d,e){if(!d)return null;var f=d.is('table')||d.hasAscendant('table');if(f)return{tabledelete:CKEDITOR.TRISTATE_OFF,table:CKEDITOR.TRISTATE_OFF};return null;});}}); 7 | -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/plugins/templates/plugin.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | (function(){CKEDITOR.plugins.add('templates',{requires:['dialog'],init:function(c){CKEDITOR.dialog.add('templates',CKEDITOR.getUrl(this.path+'dialogs/templates.js'));c.addCommand('templates',new CKEDITOR.dialogCommand('templates'));c.ui.addButton('Templates',{label:c.lang.templates.button,command:'templates'});}});var a={},b={};CKEDITOR.addTemplates=function(c,d){a[c]=d;};CKEDITOR.getTemplates=function(c){return a[c];};CKEDITOR.loadTemplates=function(c,d){var e=[];for(var f=0;f0)CKEDITOR.scriptLoader.load(e,d);else setTimeout(d,0);};})();CKEDITOR.config.templates='default';CKEDITOR.config.templates_files=[CKEDITOR.getUrl('plugins/templates/templates/default.js')];CKEDITOR.config.templates_replaceContent=true; 7 | -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/plugins/templates/templates/images/template1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/plugins/templates/templates/images/template1.gif -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/plugins/templates/templates/images/template2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/plugins/templates/templates/images/template2.gif -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/plugins/templates/templates/images/template3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/plugins/templates/templates/images/template3.gif -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/plugins/uicolor/lang/en.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','en',{uicolor:{title:'UI Color Picker',preview:'Live preview',config:'Paste this string into your config.js file',predefined:'Predefined color sets'}}); 7 | -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/plugins/uicolor/plugin.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.add('uicolor',{requires:['dialog'],lang:['en'],init:function(a){if(CKEDITOR.env.ie6Compat)return;a.addCommand('uicolor',new CKEDITOR.dialogCommand('uicolor'));a.ui.addButton('UIColor',{label:a.lang.uicolor.title,command:'uicolor',icon:this.path+'uicolor.gif'});CKEDITOR.dialog.add('uicolor',this.path+'dialogs/uicolor.js');CKEDITOR.scriptLoader.load(CKEDITOR.getUrl('plugins/uicolor/yui/yui.js'));a.element.getDocument().appendStyleSheet(CKEDITOR.getUrl('plugins/uicolor/yui/assets/yui.css'));}}); 7 | -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/plugins/uicolor/uicolor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/plugins/uicolor/uicolor.gif -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/plugins/uicolor/yui/assets/hue_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/plugins/uicolor/yui/assets/hue_bg.png -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/plugins/uicolor/yui/assets/hue_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/plugins/uicolor/yui/assets/hue_thumb.png -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/plugins/uicolor/yui/assets/picker_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/plugins/uicolor/yui/assets/picker_mask.png -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/plugins/uicolor/yui/assets/picker_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/plugins/uicolor/yui/assets/picker_thumb.png -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/plugins/wsc/plugin.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.add('wsc',{init:function(a){var b='checkspell',c=a.addCommand(b,new CKEDITOR.dialogCommand(b));c.modes={wysiwyg:!CKEDITOR.env.opera&&document.domain==window.location.hostname};a.ui.addButton('SpellChecker',{label:a.lang.spellCheck.toolbar,command:b});CKEDITOR.dialog.add(b,this.path+'dialogs/wsc.js');}});CKEDITOR.config.wsc_customerId=CKEDITOR.config.wsc_customerId||'1:ua3xw1-2XyGJ3-GWruD3-6OFNT1-oXcuB1-nR6Bp4-hgQHc-EcYng3-sdRXG3-NOfFk';CKEDITOR.config.wsc_customLoaderScript=CKEDITOR.config.wsc_customLoaderScript||null; 7 | -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/skins/kama/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/skins/kama/icons.png -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/skins/kama/images/dialog_sides.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/skins/kama/images/dialog_sides.gif -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/skins/kama/images/dialog_sides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/skins/kama/images/dialog_sides.png -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/skins/kama/images/dialog_sides_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/skins/kama/images/dialog_sides_rtl.png -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/skins/kama/images/mini.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/skins/kama/images/mini.gif -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/skins/kama/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/skins/kama/images/noimage.png -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/skins/kama/images/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/skins/kama/images/sprites.png -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/skins/kama/images/sprites_ie6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/skins/kama/images/sprites_ie6.png -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/skins/kama/images/toolbar_start.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/skins/kama/images/toolbar_start.gif -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/skins/kama/templates.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | .cke_skin_kama .cke_tpl_list{border:#dcdcdc 2px solid;background-color:#fff;overflow:auto;width:100%;height:220px;}.cke_skin_kama .cke_tpl_item{margin:5px;padding:7px;border:#eee 1px solid;*width:88%;}.cke_skin_kama .cke_tpl_preview{border-collapse:separate;text-indent:0;width:100%;}.cke_skin_kama .cke_tpl_preview td{padding:2px;vertical-align:middle;}.cke_skin_kama .cke_tpl_preview .cke_tpl_preview_img{width:100px;}.cke_skin_kama .cke_tpl_preview span{white-space:normal;}.cke_skin_kama .cke_tpl_title{font-weight:bold;}.cke_skin_kama .cke_tpl_hover{border:#f93 1px solid!important;background-color:#fffacd!important;cursor:pointer;cursor:hand;}.cke_skin_kama .cke_tpl_hover *{cursor:inherit;}.cke_skin_kama .cke_tpl_empty,.cke_tpl_loading{text-align:center;padding:5px;} 7 | -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/skins/office2003/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/skins/office2003/icons.png -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/skins/office2003/images/dialog_sides.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/skins/office2003/images/dialog_sides.gif -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/skins/office2003/images/dialog_sides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/skins/office2003/images/dialog_sides.png -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/skins/office2003/images/dialog_sides_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/skins/office2003/images/dialog_sides_rtl.png -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/skins/office2003/images/mini.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/skins/office2003/images/mini.gif -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/skins/office2003/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/skins/office2003/images/noimage.png -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/skins/office2003/images/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/skins/office2003/images/sprites.png -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/skins/office2003/images/sprites_ie6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/skins/office2003/images/sprites_ie6.png -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/skins/v2/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/skins/v2/icons.png -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/skins/v2/images/dialog_sides.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/skins/v2/images/dialog_sides.gif -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/skins/v2/images/dialog_sides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/skins/v2/images/dialog_sides.png -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/skins/v2/images/dialog_sides_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/skins/v2/images/dialog_sides_rtl.png -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/skins/v2/images/mini.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/skins/v2/images/mini.gif -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/skins/v2/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/skins/v2/images/noimage.png -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/skins/v2/images/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/skins/v2/images/sprites.png -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/skins/v2/images/sprites_ie6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/skins/v2/images/sprites_ie6.png -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/skins/v2/images/toolbar_start.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/ckeditor/assets/skins/v2/images/toolbar_start.gif -------------------------------------------------------------------------------- /protected/extensions/ckeditor/assets/skins/v2/templates.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | .cke_skin_v2 .cke_tpl_list{border:#dcdcdc 2px solid;background-color:#fff;overflow:auto;width:100%;height:220px;}.cke_skin_v2 .cke_tpl_item{margin:5px;padding:7px;border:#eee 1px solid;*width:88%;}.cke_skin_v2 .cke_tpl_preview{border-collapse:separate;text-indent:0;width:100%;}.cke_skin_v2 .cke_tpl_preview td{padding:2px;vertical-align:middle;}.cke_skin_v2 .cke_tpl_preview .cke_tpl_preview_img{width:100px;}.cke_skin_v2 .cke_tpl_preview span{white-space:normal;}.cke_skin_v2 .cke_tpl_title{font-weight:bold;}.cke_skin_v2 .cke_tpl_hover{border:#f93 1px solid!important;background-color:#fffacd!important;cursor:pointer;cursor:hand;}.cke_skin_v2 .cke_tpl_hover *{cursor:inherit;}.cke_skin_v2 .cke_tpl_empty,.cke_tpl_loading{text-align:center;padding:5px;} 7 | -------------------------------------------------------------------------------- /protected/extensions/email/Debug.php: -------------------------------------------------------------------------------- 1 | user->hasFlash('email')) { 5 | //register css file 6 | $url = CHtml::asset(Yii::getPathOfAlias('application.extensions.email.css.debug').'.css'); 7 | Yii::app()->getClientScript()->registerCssFile($url); 8 | 9 | //dump debug info 10 | echo Yii::app()->user->getFlash('email'); 11 | //Yii::app()->user->setFlash('email', null); 12 | } 13 | } 14 | } -------------------------------------------------------------------------------- /protected/extensions/email/css/debug.css: -------------------------------------------------------------------------------- 1 | div.emailDebug { 2 | border: black 1px solid; 3 | padding: 9px; 4 | } 5 | div.emailDebug h2 { 6 | margin: 2px 0 0 0; 7 | padding: 0; 8 | } 9 | div.emailDebug p { 10 | margin: 5px 0 0 0; 11 | padding: 0; 12 | } 13 | div.emailDebug h3 { 14 | margin: 20px 0 7px 0; 15 | border-bottom: black 1px solid; 16 | padding: 0; 17 | } 18 | div.emailDebug .emailMessage { 19 | margin: 10px; 20 | border: #999 1px solid; 21 | padding: 10px; 22 | } -------------------------------------------------------------------------------- /protected/extensions/email/views/debug.php: -------------------------------------------------------------------------------- 1 |
2 |

.: Dumping email

3 |

The email extension is in debug mode, which means that the email was not actually sent but is dumped below instead

4 |

Email

5 | To: 6 | 7 |
Subject: 8 | 9 |
10 |

Additional headers

11 |

\n"; 14 | } 15 | ?>

16 |
-------------------------------------------------------------------------------- /protected/extensions/fancybox/assets/helpers/fancybox_buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/fancybox/assets/helpers/fancybox_buttons.png -------------------------------------------------------------------------------- /protected/extensions/fancybox/assets/helpers/jquery.fancybox-thumbs.css: -------------------------------------------------------------------------------- 1 | #fancybox-thumbs { 2 | position: fixed; 3 | left: 0; 4 | width: 100%; 5 | overflow: hidden; 6 | z-index: 8050; 7 | } 8 | 9 | #fancybox-thumbs.bottom { 10 | bottom: 2px; 11 | } 12 | 13 | #fancybox-thumbs.top { 14 | top: 2px; 15 | } 16 | 17 | #fancybox-thumbs ul { 18 | position: relative; 19 | list-style: none; 20 | margin: 0; 21 | padding: 0; 22 | } 23 | 24 | #fancybox-thumbs ul li { 25 | float: left; 26 | padding: 1px; 27 | opacity: 0.5; 28 | } 29 | 30 | #fancybox-thumbs ul li.active { 31 | opacity: 0.75; 32 | padding: 0; 33 | border: 1px solid #fff; 34 | } 35 | 36 | #fancybox-thumbs ul li:hover { 37 | opacity: 1; 38 | } 39 | 40 | #fancybox-thumbs ul li a { 41 | display: block; 42 | position: relative; 43 | overflow: hidden; 44 | border: 1px solid #222; 45 | background: #111; 46 | outline: none; 47 | } 48 | 49 | #fancybox-thumbs ul li img { 50 | display: block; 51 | position: relative; 52 | border: 0; 53 | padding: 0; 54 | max-width: none; 55 | } -------------------------------------------------------------------------------- /protected/extensions/fancybox/assets/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/fancybox/assets/images/blank.gif -------------------------------------------------------------------------------- /protected/extensions/fancybox/assets/images/fancybox_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/fancybox/assets/images/fancybox_loading.gif -------------------------------------------------------------------------------- /protected/extensions/fancybox/assets/images/fancybox_loading@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/fancybox/assets/images/fancybox_loading@2x.gif -------------------------------------------------------------------------------- /protected/extensions/fancybox/assets/images/fancybox_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/fancybox/assets/images/fancybox_overlay.png -------------------------------------------------------------------------------- /protected/extensions/fancybox/assets/images/fancybox_sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/fancybox/assets/images/fancybox_sprite.png -------------------------------------------------------------------------------- /protected/extensions/fancybox/assets/images/fancybox_sprite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/fancybox/assets/images/fancybox_sprite@2x.png -------------------------------------------------------------------------------- /protected/extensions/gallerymanager/.hg_archival.txt: -------------------------------------------------------------------------------- 1 | repo: 28f0a73d5a0a763d978d0b5a610aa40ff5f196ee 2 | node: 743ea52aacdf1b36106ea22acef4764aa5c242f2 3 | branch: default 4 | latesttag: null 5 | latesttagdistance: 26 6 | -------------------------------------------------------------------------------- /protected/extensions/gallerymanager/build.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | uglifyjs -m --unsafe -o ./assets/jquery.galleryManager.min.js ./assets/jquery.galleryManager.js 4 | uglifyjs -m --unsafe -o ./assets/jquery.iframe-transport.min.js ./assets/jquery.iframe-transport.js 5 | -------------------------------------------------------------------------------- /protected/extensions/gallerymanager/messages/config.php: -------------------------------------------------------------------------------- 1 | dirname(__FILE__) . DIRECTORY_SEPARATOR . '..', 5 | 'messagePath' => dirname(__FILE__) . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . 'messages', 6 | //'languages' => array('zh_cn', 'zh_tw', 'de', 'el', 'es', 'sv', 'he', 'nl', 'pt', 'pt_br', 'ru', 'it', 'fr', 'ja', 'pl', 'hu', 'ro', 'id', 'vi', 'bg', 'lv', 'sk'), 7 | 'languages' => array('en', 'ru', 'uk'), 8 | 'fileTypes' => array('php'), 9 | 'overwrite' => true, 10 | 'exclude' => array( 11 | '/messages', 12 | '/vendors', 13 | '/assets', 14 | ), 15 | ); 16 | -------------------------------------------------------------------------------- /protected/extensions/gallerymanager/migrations/schema.migration: -------------------------------------------------------------------------------- 1 | createTable( 'gallery', array( 9 | 'id' => 'pk', 10 | 'versions_data' => 'text NOT NULL', 11 | 'name' => 'boolean NOT NULL DEFAULT 1', 12 | 'description' => 'boolean NOT NULL DEFAULT 1' 13 | ) ); 14 | 15 | $this->createTable( 'gallery_photo', array( 16 | 'id' => 'pk', 17 | 'gallery_id' => 'integer NOT NULL', 18 | 'rank' => 'integer NOT NULL DEFAULT 0', 19 | 'name' => 'string NOT NULL', 20 | 'description' => 'text', 21 | 'file_name' => 'string NOT NULL' 22 | ) ); 23 | 24 | $this->addForeignKey( 'fk_gallery_photo_gallery1', 'gallery_photo', 'gallery_id', 25 | 'gallery', 'id', 'NO ACTION', 'NO ACTION' ); 26 | } 27 | 28 | public function down() { 29 | $this->dropTable( 'gallery_photo' ); 30 | $this->dropTable( 'gallery' ); 31 | } 32 | 33 | 34 | -------------------------------------------------------------------------------- /protected/extensions/image/.hg_archival.txt: -------------------------------------------------------------------------------- 1 | repo: 880649518c00c53bb186a814b111d156d02e241d 2 | node: 2c669abd97f92c898b10672b8ebf0f2f7e73ff27 3 | branch: default 4 | latesttag: null 5 | latesttagdistance: 7 6 | -------------------------------------------------------------------------------- /protected/extensions/sitemap/_views/sitemap.php: -------------------------------------------------------------------------------- 1 | 11 | -------------------------------------------------------------------------------- /protected/extensions/sitemap/_views/sitemapxml.php: -------------------------------------------------------------------------------- 1 | ' ?> 2 | 3 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /protected/extensions/yii-debug-toolbar/YiiDebugController.php: -------------------------------------------------------------------------------- 1 | render('index'); 9 | } 10 | 11 | 12 | public function getViewPath() 13 | { 14 | return __DIR__ . '/views'; 15 | } 16 | 17 | public function getLayoutFile($layoutName) 18 | { 19 | return $this->getViewPath() . '/layouts/main.php'; 20 | } 21 | 22 | 23 | } -------------------------------------------------------------------------------- /protected/extensions/yii-debug-toolbar/YiiDebugViewHelper.php: -------------------------------------------------------------------------------- 1 | 0) { 28 | $details = '\n"; 31 | } 32 | return '
' . $first ."
\n" . $details; 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /protected/extensions/yii-debug-toolbar/assets/arrow_collapse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/yii-debug-toolbar/assets/arrow_collapse.gif -------------------------------------------------------------------------------- /protected/extensions/yii-debug-toolbar/assets/arrow_expand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/yii-debug-toolbar/assets/arrow_expand.gif -------------------------------------------------------------------------------- /protected/extensions/yii-debug-toolbar/assets/bullet_toggle_minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/yii-debug-toolbar/assets/bullet_toggle_minus.png -------------------------------------------------------------------------------- /protected/extensions/yii-debug-toolbar/assets/bullet_toggle_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/yii-debug-toolbar/assets/bullet_toggle_plus.png -------------------------------------------------------------------------------- /protected/extensions/yii-debug-toolbar/assets/chronometer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/yii-debug-toolbar/assets/chronometer.png -------------------------------------------------------------------------------- /protected/extensions/yii-debug-toolbar/assets/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/yii-debug-toolbar/assets/close.png -------------------------------------------------------------------------------- /protected/extensions/yii-debug-toolbar/assets/close_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/yii-debug-toolbar/assets/close_hover.png -------------------------------------------------------------------------------- /protected/extensions/yii-debug-toolbar/assets/fonts/yii-debug.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/yii-debug-toolbar/assets/fonts/yii-debug.eot -------------------------------------------------------------------------------- /protected/extensions/yii-debug-toolbar/assets/fonts/yii-debug.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/yii-debug-toolbar/assets/fonts/yii-debug.ttf -------------------------------------------------------------------------------- /protected/extensions/yii-debug-toolbar/assets/fonts/yii-debug.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/yii-debug-toolbar/assets/fonts/yii-debug.woff -------------------------------------------------------------------------------- /protected/extensions/yii-debug-toolbar/assets/indicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/yii-debug-toolbar/assets/indicator.png -------------------------------------------------------------------------------- /protected/extensions/yii-debug-toolbar/assets/panel-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/yii-debug-toolbar/assets/panel-close.png -------------------------------------------------------------------------------- /protected/extensions/yii-debug-toolbar/assets/panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/yii-debug-toolbar/assets/panel.png -------------------------------------------------------------------------------- /protected/extensions/yii-debug-toolbar/assets/yii-debug.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/extensions/yii-debug-toolbar/assets/yii-debug.zip -------------------------------------------------------------------------------- /protected/extensions/yii-debug-toolbar/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "malyshev/yii-debug-toolbar", 3 | "description": "A configurable set of panels that display various debug information about the current request/response.", 4 | "keywords": ["yii", "debug", "extension"], 5 | "license": "BSD-3-Clause", 6 | "authors": [ 7 | { 8 | "name": "Sergey Malyshev", 9 | "email": "malyshev.php@gmail.com", 10 | "homepage": "http://www.yiiframework.com/extension/yii-debug-toolbar/" 11 | } 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /protected/extensions/yii-debug-toolbar/views/index.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | debug index -------------------------------------------------------------------------------- /protected/extensions/yii-debug-toolbar/views/layouts/main.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /protected/extensions/yii-debug-toolbar/views/panels/server.php: -------------------------------------------------------------------------------- 1 |
2 | getPhpInfoContent() ?> 3 |
4 | -------------------------------------------------------------------------------- /protected/extensions/yii-debug-toolbar/views/panels/sql/servers.php: -------------------------------------------------------------------------------- 1 | $connection): ?> 2 |

: ()

3 | getServerInfo($id);?> 4 | 5 | 6 | 7 | $value): ?> 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
Used DB driver doesn't provide info.
20 | 21 | 22 | No SQL Servers used during this request. 23 | 24 | -------------------------------------------------------------------------------- /protected/extensions/yii-debug-toolbar/widgets/views/resources.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /protected/models/_ConfigForm.php: -------------------------------------------------------------------------------- 1 | . 5 | */ 6 | 7 | /** 8 | * Description of ConfigForm 9 | * 10 | * @author Victor Demin 11 | */ 12 | class ConfigForm extends CFormModel { 13 | 14 | public $top; 15 | public $answer; 16 | 17 | public function rules() { 18 | return array( 19 | array('top, answer', 'safe'), 20 | array('increase_views', 'numerical', 'integerOnly' => true), 21 | ); 22 | } 23 | 24 | public function attributeLabels() { 25 | return array( 26 | 'top' => Yii::t('main', 'Top'), 27 | 'answer' => Yii::t('main', 'Answers'), 28 | ); 29 | } 30 | 31 | 32 | 33 | } 34 | 35 | ?> 36 | -------------------------------------------------------------------------------- /protected/modules/cms/CmsModule.php: -------------------------------------------------------------------------------- 1 | setImport(array( 15 | 'cms.models.*', 16 | 'cms.components.*', 17 | )); 18 | 19 | } 20 | 21 | public function beforeControllerAction($controller, $action) 22 | { 23 | if(parent::beforeControllerAction($controller, $action)) 24 | { 25 | // this method is called before any module controller action is performed 26 | // you may place customized code here 27 | return true; 28 | } 29 | else 30 | return false; 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /protected/modules/cms/controllers/DefaultController.php: -------------------------------------------------------------------------------- 1 | render('index'); 9 | } 10 | } -------------------------------------------------------------------------------- /protected/run_test.bat: -------------------------------------------------------------------------------- 1 | php codecept.phar run --debug 2 | Pause -------------------------------------------------------------------------------- /protected/tests/_bootstrap.php: -------------------------------------------------------------------------------- 1 | 'CWebApplication', 13 | 'config' => $config, 14 | ); -------------------------------------------------------------------------------- /protected/tests/_data/dump.sql: -------------------------------------------------------------------------------- 1 | /* Replace this file with actual dump of your database */ -------------------------------------------------------------------------------- /protected/tests/_output/WelcomeCept.fail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/protected/tests/_output/WelcomeCept.fail.html -------------------------------------------------------------------------------- /protected/tests/_output/failed: -------------------------------------------------------------------------------- 1 | tests\unit\ExampleTest.php:testValidation -------------------------------------------------------------------------------- /protected/tests/_support/AcceptanceTester.php: -------------------------------------------------------------------------------- 1 | wantTo('ensure that frontpage works'); 4 | $I->amOnPage('http://localhost/Yboard/'); 5 | $I->see('Apple'); 6 | -------------------------------------------------------------------------------- /protected/tests/acceptance/_bootstrap.php: -------------------------------------------------------------------------------- 1 | . 5 | */ 6 | 7 | /** 8 | * Show radiobuttons to choose bulletin's type. 9 | * 10 | * @author Victor Demin 11 | * 12 | * Вудалить 13 | * 14 | */ 15 | class BulletinTypeWidget extends CWidget 16 | { 17 | /** 18 | * @var CActiveForm form 19 | */ 20 | public $form; 21 | 22 | /** 23 | * @var Bulletin model 24 | */ 25 | public $model; 26 | 27 | public function run() { 28 | $this->render('bulletinTypeWidget', 29 | array('model'=>$this->model, 'form'=>$this->form)); 30 | } 31 | 32 | } 33 | 34 | ?> 35 | -------------------------------------------------------------------------------- /protected/widgets/ImageFileUploadWidget.php: -------------------------------------------------------------------------------- 1 | . 5 | */ 6 | 7 | /** 8 | * Description of ImageFileUploadWidget 9 | * 10 | * @author Victor Demin 11 | */ 12 | class ImageFileUploadWidget extends CWidget 13 | { 14 | /** 15 | * @var CActiveForm form 16 | */ 17 | public $form; 18 | 19 | /** 20 | * @var CModel model 21 | */ 22 | public $model; 23 | 24 | /** 25 | * @var string Model's attribute 26 | */ 27 | public $attribute; 28 | 29 | /** 30 | * @var string Image preview 31 | */ 32 | public $preview; 33 | 34 | public function run() 35 | { 36 | $this->render('imageFileUploadWidget', array( 37 | 'model' => $this->model, 38 | 'form' => $this->form, 39 | 'attribute' => $this->attribute, 40 | 'preview' => $this->preview, 41 | )); 42 | } 43 | 44 | } 45 | 46 | ?> 47 | -------------------------------------------------------------------------------- /protected/widgets/LastBulletinsWidget.php: -------------------------------------------------------------------------------- 1 | . 5 | */ 6 | 7 | /** 8 | * Description of LastBulletinsWidget 9 | * 10 | * @author Victor Demin 11 | */ 12 | class LastBulletinsWidget extends CWidget 13 | { 14 | /** 15 | * @var int Count of last bulletins 16 | */ 17 | public $limit = 20; 18 | 19 | public function run() 20 | { 21 | $this->render('lastBulletinsWidget', array('bulletins' => $this->lastBulletins())); 22 | } 23 | 24 | public function lastBulletins() 25 | { 26 | $dataProvider=new CActiveDataProvider('Bulletin', array( 27 | 'criteria'=>array( 28 | 'order'=>'id DESC', 29 | 'limit'=>$this->limit, 30 | ), 31 | )); 32 | return $dataProvider->getData(); 33 | } 34 | 35 | } 36 | 37 | ?> 38 | -------------------------------------------------------------------------------- /protected/widgets/ShowImagesWidget.php: -------------------------------------------------------------------------------- 1 | . 5 | */ 6 | 7 | /** 8 | * Description of LastBulletinsWidget 9 | * 10 | * @author Victor Demin 11 | */ 12 | class ShowImagesWidget extends CWidget 13 | { 14 | /** 15 | * @var Bulletin 16 | */ 17 | public $bulletin; 18 | 19 | public function run() 20 | { 21 | $this->render('showImagesWidget', array('bulletin' => $this->bulletin)); 22 | } 23 | 24 | } 25 | 26 | ?> 27 | -------------------------------------------------------------------------------- /protected/widgets/UloginWidget.php: -------------------------------------------------------------------------------- 1 | 'panel', 8 | 'fields' => 'first_name,last_name,email', 9 | 'optional' => '', 10 | 'providers' => 'vkontakte,odnoklassniki,mailru,facebook', 11 | 'hidden' => 'twitter,google,yandex,livejournal,openid,lastfm,linkedin,liveid,soundcloud,steam', 12 | 'redirect' => '', 13 | 'logout_url' => '/ulogin/logout' 14 | ); 15 | 16 | public function run() 17 | { 18 | //подключаем JS скрипт 19 | Yii::app()->clientScript->registerScriptFile('http://ulogin.ru/js/ulogin.js', CClientScript::POS_HEAD); 20 | $this->render('uloginWidget', $this->params); 21 | } 22 | 23 | public function setParams($params) 24 | { 25 | $this->params = array_merge($this->params, $params); 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /protected/widgets/articleList.php: -------------------------------------------------------------------------------- 1 | 5 | */ 6 | 7 | /** 8 | * Выводит панель продвинутого поиска для определенной категории 9 | * 10 | * @author Max Uglov 11 | * 12 | * 13 | */ 14 | class articleList extends CWidget { 15 | 16 | /** 17 | * @var CActiveForm form 18 | */ 19 | public function run() { 20 | 21 | $model = new Cms(); 22 | $art_list = $model->getPageList(); 23 | 24 | foreach ($art_list as $art) { 25 | echo "" . $art->name . ""; 26 | } 27 | } 28 | 29 | } 30 | -------------------------------------------------------------------------------- /protected/widgets/views/bulletinCategoryWidget.php: -------------------------------------------------------------------------------- 1 | . 5 | */ 6 | /* @var $form CActiveForm */ 7 | /* @var $model Bulletin 8 | 9 | * Вудалить 10 | * */ 11 | ?> 12 | 13 | labelEx($model, 'category_id'); 15 | echo CHtml::activeDropDownList($model, 'category_id', $categories, 16 | array('empty' => Yii::t('bulletin', 'Choose category'), 17 | 'onchange' => 'loadFields(this)')); 18 | echo $form->error($model, 'category_id'); 19 | ?> -------------------------------------------------------------------------------- /protected/widgets/views/bulletinTypeWidget.php: -------------------------------------------------------------------------------- 1 | . 5 | */ 6 | /* @var $form CActiveForm */ 7 | /* @var $model Bulletin 8 | 9 | * Вудалить 10 | 11 | * */ 12 | 13 | ?> 14 | 15 | labelEx($model,'type'); ?> 16 | array('style'=>'display:inline'), 'separator'=>' ') 19 | ); ?> 20 | error($model,'type'); ?> -------------------------------------------------------------------------------- /protected/widgets/views/imageFileUploadWidget.php: -------------------------------------------------------------------------------- 1 | . 5 | */ 6 | /* @var $form CActiveForm */ 7 | /* @var $model CModel */ 8 | ?> 9 | 10 | labelEx($model,$attribute); ?> 11 | 12 | <?php echo $attribute; ?> 13 | 14 | fileField($model,$attribute); ?> 15 | error($model,$attribute); ?> 16 | 17 | -------------------------------------------------------------------------------- /protected/widgets/views/showAdvertisementWidget.php: -------------------------------------------------------------------------------- 1 | . 4 | */ 5 | /* @var $model Advertisement */ 6 | ?> 7 | 8 | url): ?> 9 | 10 | 11 | <?php echo $model->name; ?> 12 | url): ?> 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /protected/widgets/views/showImagesWidget.php: -------------------------------------------------------------------------------- 1 | . 5 | */ 6 | /* @var $bulletin Bulletin */ 7 | /* @var $model GalleryPhoto */ 8 | ?> 9 | 10 | gallery && $bulletin->gallery->galleryPhotos): ?> 11 | widget('application.extensions.fancybox.AlFancyBox', array( 13 | 'config' => array(), 14 | ) 15 | ); 16 | ?> 17 | gallery->galleryPhotos as $model): ?> 18 | 19 | <?php echo CHtml::encode($bulletin->name) ?> 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /protected/widgets/views/treewidget.php: -------------------------------------------------------------------------------- 1 | 16 |
17 |
18 | 19 |
20 |
21 |
-------------------------------------------------------------------------------- /protected/widgets/views/uloginWidget.php: -------------------------------------------------------------------------------- 1 | user->isGuest): ?> 2 | 3 |
4 | 5 | 6 | user->getName().')'; 8 | echo CHtml::link($anchor, array($logout_url)); 9 | ?> 10 | -------------------------------------------------------------------------------- /protected/yiic: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env php 2 | .core(@gridColumnWidth, @gridGutterWidth); 8 | 9 | // Fluid (940px) 10 | #grid > .fluid(@fluidGridColumnWidth, @fluidGridGutterWidth); 11 | 12 | // Reset utility classes due to specificity 13 | [class*="span"].hide, 14 | .row-fluid [class*="span"].hide { 15 | display: none; 16 | } 17 | 18 | [class*="span"].pull-right, 19 | .row-fluid [class*="span"].pull-right { 20 | float: right; 21 | } 22 | -------------------------------------------------------------------------------- /themes/yboard/js/bootstrap/less/hero-unit.less: -------------------------------------------------------------------------------- 1 | // 2 | // Hero unit 3 | // -------------------------------------------------- 4 | 5 | 6 | .hero-unit { 7 | padding: 60px; 8 | margin-bottom: 30px; 9 | font-size: 18px; 10 | font-weight: 200; 11 | line-height: @baseLineHeight * 1.5; 12 | color: @heroUnitLeadColor; 13 | background-color: @heroUnitBackground; 14 | .border-radius(6px); 15 | h1 { 16 | margin-bottom: 0; 17 | font-size: 60px; 18 | line-height: 1; 19 | color: @heroUnitHeadingColor; 20 | letter-spacing: -1px; 21 | } 22 | li { 23 | line-height: @baseLineHeight * 1.5; // Reset since we specify in type.less 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /themes/yboard/js/bootstrap/less/layouts.less: -------------------------------------------------------------------------------- 1 | // 2 | // Layouts 3 | // -------------------------------------------------- 4 | 5 | 6 | // Container (centered, fixed-width layouts) 7 | .container { 8 | .container-fixed(); 9 | } 10 | 11 | // Fluid layouts (left aligned, with sidebar, min- & max-width content) 12 | .container-fluid { 13 | padding-right: @gridGutterWidth; 14 | padding-left: @gridGutterWidth; 15 | .clearfix(); 16 | } -------------------------------------------------------------------------------- /themes/yboard/js/bootstrap/less/pager.less: -------------------------------------------------------------------------------- 1 | // 2 | // Pager pagination 3 | // -------------------------------------------------- 4 | 5 | 6 | .pager { 7 | margin: @baseLineHeight 0; 8 | list-style: none; 9 | text-align: center; 10 | .clearfix(); 11 | } 12 | .pager li { 13 | display: inline; 14 | } 15 | .pager li > a, 16 | .pager li > span { 17 | display: inline-block; 18 | padding: 5px 14px; 19 | background-color: #fff; 20 | border: 1px solid #ddd; 21 | .border-radius(15px); 22 | } 23 | .pager li > a:hover { 24 | text-decoration: none; 25 | background-color: #f5f5f5; 26 | } 27 | .pager .next > a, 28 | .pager .next > span { 29 | float: right; 30 | } 31 | .pager .previous > a, 32 | .pager .previous > span { 33 | float: left; 34 | } 35 | .pager .disabled > a, 36 | .pager .disabled > a:hover, 37 | .pager .disabled > span { 38 | color: @grayLight; 39 | background-color: #fff; 40 | cursor: default; 41 | } -------------------------------------------------------------------------------- /themes/yboard/js/bootstrap/less/responsive-1200px-min.less: -------------------------------------------------------------------------------- 1 | // 2 | // Responsive: Large desktop and up 3 | // -------------------------------------------------- 4 | 5 | 6 | @media (min-width: 1200px) { 7 | 8 | // Fixed grid 9 | #grid > .core(@gridColumnWidth1200, @gridGutterWidth1200); 10 | 11 | // Fluid grid 12 | #grid > .fluid(@fluidGridColumnWidth1200, @fluidGridGutterWidth1200); 13 | 14 | // Input grid 15 | #grid > .input(@gridColumnWidth1200, @gridGutterWidth1200); 16 | 17 | // Thumbnails 18 | .thumbnails { 19 | margin-left: -@gridGutterWidth1200; 20 | } 21 | .thumbnails > li { 22 | margin-left: @gridGutterWidth1200; 23 | } 24 | .row-fluid .thumbnails { 25 | margin-left: 0; 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /themes/yboard/js/bootstrap/less/responsive-768px-979px.less: -------------------------------------------------------------------------------- 1 | // 2 | // Responsive: Tablet to desktop 3 | // -------------------------------------------------- 4 | 5 | 6 | @media (min-width: 768px) and (max-width: 979px) { 7 | 8 | // Fixed grid 9 | #grid > .core(@gridColumnWidth768, @gridGutterWidth768); 10 | 11 | // Fluid grid 12 | #grid > .fluid(@fluidGridColumnWidth768, @fluidGridGutterWidth768); 13 | 14 | // Input grid 15 | #grid > .input(@gridColumnWidth768, @gridGutterWidth768); 16 | 17 | // No need to reset .thumbnails here since it's the same @gridGutterWidth 18 | 19 | } 20 | -------------------------------------------------------------------------------- /themes/yboard/js/bootstrap/less/utilities.less: -------------------------------------------------------------------------------- 1 | // 2 | // Utility classes 3 | // -------------------------------------------------- 4 | 5 | 6 | // Quick floats 7 | .pull-right { 8 | float: right; 9 | } 10 | .pull-left { 11 | float: left; 12 | } 13 | 14 | // Toggling content 15 | .hide { 16 | display: none; 17 | } 18 | .show { 19 | display: block; 20 | } 21 | 22 | // Visibility 23 | .invisible { 24 | visibility: hidden; 25 | } 26 | 27 | // For Affix plugin 28 | .affix { 29 | position: fixed; 30 | } 31 | -------------------------------------------------------------------------------- /themes/yboard/js/bootstrap/less/wells.less: -------------------------------------------------------------------------------- 1 | // 2 | // Wells 3 | // -------------------------------------------------- 4 | 5 | 6 | // Base class 7 | .well { 8 | min-height: 20px; 9 | padding: 19px; 10 | margin-bottom: 20px; 11 | background-color: @wellBackground; 12 | border: 1px solid darken(@wellBackground, 7%); 13 | .border-radius(@baseBorderRadius); 14 | .box-shadow(inset 0 1px 1px rgba(0,0,0,.05)); 15 | blockquote { 16 | border-color: #ddd; 17 | border-color: rgba(0,0,0,.15); 18 | } 19 | } 20 | 21 | // Sizes 22 | .well-large { 23 | padding: 24px; 24 | .border-radius(@borderRadiusLarge); 25 | } 26 | .well-small { 27 | padding: 9px; 28 | .border-radius(@borderRadiusSmall); 29 | } 30 | -------------------------------------------------------------------------------- /themes/yboard/js/cookies.js: -------------------------------------------------------------------------------- 1 | /* 2 | * To change this license header, choose License Headers in Project Properties. 3 | * To change this template file, choose Tools | Templates 4 | * and open the template in the editor. 5 | */ 6 | -------------------------------------------------------------------------------- /themes/yboard/js/fancybox2/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/themes/yboard/js/fancybox2/blank.gif -------------------------------------------------------------------------------- /themes/yboard/js/fancybox2/fancybox_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/themes/yboard/js/fancybox2/fancybox_loading.gif -------------------------------------------------------------------------------- /themes/yboard/js/fancybox2/fancybox_sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/themes/yboard/js/fancybox2/fancybox_sprite.png -------------------------------------------------------------------------------- /themes/yboard/js/fancybox2/helpers/fancybox_buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/themes/yboard/js/fancybox2/helpers/fancybox_buttons.png -------------------------------------------------------------------------------- /themes/yboard/js/fancybox2/helpers/jquery.fancybox-thumbs.css: -------------------------------------------------------------------------------- 1 | #fancybox-thumbs { 2 | position: fixed; 3 | left: 0; 4 | width: 100%; 5 | overflow: hidden; 6 | z-index: 8050; 7 | } 8 | 9 | #fancybox-thumbs.bottom { 10 | bottom: 2px; 11 | } 12 | 13 | #fancybox-thumbs.top { 14 | top: 2px; 15 | } 16 | 17 | #fancybox-thumbs ul { 18 | position: relative; 19 | list-style: none; 20 | margin: 0; 21 | padding: 0; 22 | } 23 | 24 | #fancybox-thumbs ul li { 25 | float: left; 26 | padding: 1px; 27 | opacity: 0.5; 28 | } 29 | 30 | #fancybox-thumbs ul li.active { 31 | opacity: 0.75; 32 | padding: 0; 33 | border: 1px solid #fff; 34 | } 35 | 36 | #fancybox-thumbs ul li:hover { 37 | opacity: 1; 38 | } 39 | 40 | #fancybox-thumbs ul li a { 41 | display: block; 42 | position: relative; 43 | overflow: hidden; 44 | border: 1px solid #222; 45 | background: #111; 46 | outline: none; 47 | } 48 | 49 | #fancybox-thumbs ul li img { 50 | display: block; 51 | position: relative; 52 | border: 0; 53 | padding: 0; 54 | } -------------------------------------------------------------------------------- /themes/yboard/js/jstree/_demo/_dump.sql: -------------------------------------------------------------------------------- 1 | CREATE TABLE IF NOT EXISTS `tree` ( 2 | `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, 3 | `parent_id` bigint(20) unsigned NOT NULL, 4 | `position` bigint(20) unsigned NOT NULL, 5 | `left` bigint(20) unsigned NOT NULL, 6 | `right` bigint(20) unsigned NOT NULL, 7 | `level` bigint(20) unsigned NOT NULL, 8 | `title` text CHARACTER SET utf8 COLLATE utf8_unicode_ci, 9 | `type` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL, 10 | PRIMARY KEY (`id`) 11 | ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=13 ; 12 | 13 | INSERT INTO `tree` (`id`, `parent_id`, `position`, `left`, `right`, `level`, `title`, `type`) VALUES 14 | (1, 0, 2, 1, 14, 0, 'ROOT', ''), 15 | (2, 1, 0, 2, 11, 1, 'C:', 'drive'), 16 | (3, 2, 0, 3, 6, 2, '_demo', 'folder'), 17 | (4, 3, 0, 4, 5, 3, 'index.html', 'default'), 18 | (5, 2, 1, 7, 10, 2, '_docs', 'folder'), 19 | (6, 1, 1, 12, 13, 1, 'D:', 'drive'), 20 | (12, 5, 0, 8, 9, 3, 'zmei.html', 'default'); 21 | -------------------------------------------------------------------------------- /themes/yboard/js/jstree/_demo/_install.txt: -------------------------------------------------------------------------------- 1 | 1) Create a database and a user with all privileges for this database. 2 | 2) Edit the config.php file and update the configuration for the database at the top of the file 3 | 3) Import the _dump.sql in your newly created database 4 | 4) You are ready to go 5 | 6 | *) PLEASE NOTE THAT THE PHP TREE CLASS HAS NOT BEEN THOROUGHLY TESTED -------------------------------------------------------------------------------- /themes/yboard/js/jstree/_demo/config.php: -------------------------------------------------------------------------------- 1 | "localhost", 5 | "username" => "root", 6 | "password" => "", 7 | "database" => "" 8 | ); 9 | if(extension_loaded("mysqli")) require_once("_inc/class._database_i.php"); 10 | else require_once("_inc/class._database.php"); 11 | 12 | // Tree class 13 | require_once("_inc/class.tree.php"); 14 | ?> -------------------------------------------------------------------------------- /themes/yboard/js/jstree/_demo/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/themes/yboard/js/jstree/_demo/file.png -------------------------------------------------------------------------------- /themes/yboard/js/jstree/_demo/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/themes/yboard/js/jstree/_demo/folder.png -------------------------------------------------------------------------------- /themes/yboard/js/jstree/_demo/root.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/themes/yboard/js/jstree/_demo/root.png -------------------------------------------------------------------------------- /themes/yboard/js/jstree/_docs/_drive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/themes/yboard/js/jstree/_docs/_drive.png -------------------------------------------------------------------------------- /themes/yboard/js/jstree/_docs/_html_data.html: -------------------------------------------------------------------------------- 1 |
  • Node 1
  • 2 |
  • Node 2
  • 3 | -------------------------------------------------------------------------------- /themes/yboard/js/jstree/_docs/_json_data.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "data" : "A node", "children" : [ { "data" : "Only child", "state" : "closed" } ], "state" : "open" }, 3 | "Ajax node" 4 | ] -------------------------------------------------------------------------------- /themes/yboard/js/jstree/_docs/_search_data.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Ajax node 1", 3 | "Ajax node 2", 4 | "TARGET", 5 | "Ajax node 4" 6 | ] -------------------------------------------------------------------------------- /themes/yboard/js/jstree/_docs/_search_result.json: -------------------------------------------------------------------------------- 1 | [ "#root_node" ] -------------------------------------------------------------------------------- /themes/yboard/js/jstree/_docs/_xml_flat.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /themes/yboard/js/jstree/_docs/_xml_nest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /themes/yboard/js/jstree/_docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/themes/yboard/js/jstree/_docs/logo.png -------------------------------------------------------------------------------- /themes/yboard/js/jstree/_docs/syntax/clipboard.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/themes/yboard/js/jstree/_docs/syntax/clipboard.swf -------------------------------------------------------------------------------- /themes/yboard/js/jstree/_docs/syntax/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/themes/yboard/js/jstree/_docs/syntax/help.png -------------------------------------------------------------------------------- /themes/yboard/js/jstree/_docs/syntax/magnifier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/themes/yboard/js/jstree/_docs/syntax/magnifier.png -------------------------------------------------------------------------------- /themes/yboard/js/jstree/_docs/syntax/page_white_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/themes/yboard/js/jstree/_docs/syntax/page_white_code.png -------------------------------------------------------------------------------- /themes/yboard/js/jstree/_docs/syntax/page_white_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/themes/yboard/js/jstree/_docs/syntax/page_white_copy.png -------------------------------------------------------------------------------- /themes/yboard/js/jstree/_docs/syntax/printer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/themes/yboard/js/jstree/_docs/syntax/printer.png -------------------------------------------------------------------------------- /themes/yboard/js/jstree/_docs/syntax/wrapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/themes/yboard/js/jstree/_docs/syntax/wrapping.png -------------------------------------------------------------------------------- /themes/yboard/js/jstree/themes/apple/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/themes/yboard/js/jstree/themes/apple/bg.jpg -------------------------------------------------------------------------------- /themes/yboard/js/jstree/themes/apple/d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/themes/yboard/js/jstree/themes/apple/d.png -------------------------------------------------------------------------------- /themes/yboard/js/jstree/themes/apple/dot_for_ie.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/themes/yboard/js/jstree/themes/apple/dot_for_ie.gif -------------------------------------------------------------------------------- /themes/yboard/js/jstree/themes/apple/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/themes/yboard/js/jstree/themes/apple/throbber.gif -------------------------------------------------------------------------------- /themes/yboard/js/jstree/themes/classic/d.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/themes/yboard/js/jstree/themes/classic/d.gif -------------------------------------------------------------------------------- /themes/yboard/js/jstree/themes/classic/d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/themes/yboard/js/jstree/themes/classic/d.png -------------------------------------------------------------------------------- /themes/yboard/js/jstree/themes/classic/dot_for_ie.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/themes/yboard/js/jstree/themes/classic/dot_for_ie.gif -------------------------------------------------------------------------------- /themes/yboard/js/jstree/themes/classic/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/themes/yboard/js/jstree/themes/classic/throbber.gif -------------------------------------------------------------------------------- /themes/yboard/js/jstree/themes/default-rtl/d.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/themes/yboard/js/jstree/themes/default-rtl/d.gif -------------------------------------------------------------------------------- /themes/yboard/js/jstree/themes/default-rtl/d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/themes/yboard/js/jstree/themes/default-rtl/d.png -------------------------------------------------------------------------------- /themes/yboard/js/jstree/themes/default-rtl/dots.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/themes/yboard/js/jstree/themes/default-rtl/dots.gif -------------------------------------------------------------------------------- /themes/yboard/js/jstree/themes/default-rtl/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/themes/yboard/js/jstree/themes/default-rtl/throbber.gif -------------------------------------------------------------------------------- /themes/yboard/js/jstree/themes/default/d.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/themes/yboard/js/jstree/themes/default/d.gif -------------------------------------------------------------------------------- /themes/yboard/js/jstree/themes/default/d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/themes/yboard/js/jstree/themes/default/d.png -------------------------------------------------------------------------------- /themes/yboard/js/jstree/themes/default/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendemon/yboard/65da80d78dee485a29889cb70b7f44941ba77d00/themes/yboard/js/jstree/themes/default/throbber.gif -------------------------------------------------------------------------------- /themes/yboard/js/noty/README.markdown: -------------------------------------------------------------------------------- 1 | # noty - A jQuery Notification Plugin 2 | 3 | ![noty v2](http://ned.im/noty-v2.png "noty v2") 4 | 5 | *** 6 | 7 | ## Hi 8 | 9 | **noty** is a jQuery plugin that makes it easy to create **alert** - **success** - **error** - **warning** - **information** - b messages as an alternative the standard alert dialog. Each notification is added to a **queue**. (**Optional**) 10 | 11 | The notifications can be positioned at the; 12 | **top** - **topLeft** - **topCenter** - **topRight** - **center** - **centerLeft** - **centerRight** - **bottom** - **bottomLeft** - **bottomCenter** - **bottomRight** 13 | 14 | There are lots of other options in the API to customise the text, animation, speed, buttons and much more. 15 | 16 | It also has various callbacks for the buttons, opening closing the notifications and queue control. 17 | 18 | *** 19 | 20 | ### Documentation 21 | 22 | Documentation and examples are here: -------------------------------------------------------------------------------- /themes/yboard/js/noty/js/noty/layouts/bottom.js: -------------------------------------------------------------------------------- 1 | ;(function($) { 2 | 3 | $.noty.layouts.bottom = { 4 | name: 'bottom', 5 | options: {}, 6 | container: { 7 | object: '
      ', 8 | selector: 'ul#noty_bottom_layout_container', 9 | style: function() { 10 | $(this).css({ 11 | bottom: 0, 12 | left: '5%', 13 | position: 'fixed', 14 | width: '90%', 15 | height: 'auto', 16 | margin: 0, 17 | padding: 0, 18 | listStyleType: 'none', 19 | zIndex: 9999999 20 | }); 21 | } 22 | }, 23 | parent: { 24 | object: '
    • ', 25 | selector: 'li', 26 | css: {} 27 | }, 28 | css: { 29 | display: 'none' 30 | }, 31 | addClass: '' 32 | }; 33 | 34 | })(jQuery); -------------------------------------------------------------------------------- /themes/yboard/js/noty/js/noty/layouts/bottomCenter.js: -------------------------------------------------------------------------------- 1 | ;(function($) { 2 | 3 | $.noty.layouts.bottomCenter = { 4 | name: 'bottomCenter', 5 | options: { // overrides options 6 | 7 | }, 8 | container: { 9 | object: '
        ', 10 | selector: 'ul#noty_bottomCenter_layout_container', 11 | style: function() { 12 | $(this).css({ 13 | bottom: 20, 14 | left: 0, 15 | position: 'fixed', 16 | width: '310px', 17 | height: 'auto', 18 | margin: 0, 19 | padding: 0, 20 | listStyleType: 'none', 21 | zIndex: 10000000 22 | }); 23 | 24 | $(this).css({ 25 | left: ($(window).width() - $(this).outerWidth(false)) / 2 + 'px' 26 | }); 27 | } 28 | }, 29 | parent: { 30 | object: '
      • ', 31 | selector: 'li', 32 | css: {} 33 | }, 34 | css: { 35 | display: 'none', 36 | width: '310px' 37 | }, 38 | addClass: '' 39 | }; 40 | 41 | })(jQuery); 42 | -------------------------------------------------------------------------------- /themes/yboard/js/noty/js/noty/layouts/bottomLeft.js: -------------------------------------------------------------------------------- 1 | ;(function($) { 2 | 3 | $.noty.layouts.bottomLeft = { 4 | name: 'bottomLeft', 5 | options: { // overrides options 6 | 7 | }, 8 | container: { 9 | object: '
          ', 10 | selector: 'ul#noty_bottomLeft_layout_container', 11 | style: function() { 12 | $(this).css({ 13 | bottom: 20, 14 | left: 20, 15 | position: 'fixed', 16 | width: '310px', 17 | height: 'auto', 18 | margin: 0, 19 | padding: 0, 20 | listStyleType: 'none', 21 | zIndex: 10000000 22 | }); 23 | 24 | if (window.innerWidth < 600) { 25 | $(this).css({ 26 | left: 5 27 | }); 28 | } 29 | } 30 | }, 31 | parent: { 32 | object: '
        • ', 33 | selector: 'li', 34 | css: {} 35 | }, 36 | css: { 37 | display: 'none', 38 | width: '310px' 39 | }, 40 | addClass: '' 41 | }; 42 | 43 | })(jQuery); -------------------------------------------------------------------------------- /themes/yboard/js/noty/js/noty/layouts/bottomRight.js: -------------------------------------------------------------------------------- 1 | ;(function($) { 2 | 3 | $.noty.layouts.bottomRight = { 4 | name: 'bottomRight', 5 | options: { // overrides options 6 | 7 | }, 8 | container: { 9 | object: '
            ', 10 | selector: 'ul#noty_bottomRight_layout_container', 11 | style: function() { 12 | $(this).css({ 13 | bottom: 20, 14 | right: 20, 15 | position: 'fixed', 16 | width: '310px', 17 | height: 'auto', 18 | margin: 0, 19 | padding: 0, 20 | listStyleType: 'none', 21 | zIndex: 10000000 22 | }); 23 | 24 | if (window.innerWidth < 600) { 25 | $(this).css({ 26 | right: 5 27 | }); 28 | } 29 | } 30 | }, 31 | parent: { 32 | object: '
          • ', 33 | selector: 'li', 34 | css: {} 35 | }, 36 | css: { 37 | display: 'none', 38 | width: '310px' 39 | }, 40 | addClass: '' 41 | }; 42 | 43 | })(jQuery); -------------------------------------------------------------------------------- /themes/yboard/js/noty/js/noty/layouts/inline.js: -------------------------------------------------------------------------------- 1 | ;(function($) { 2 | 3 | $.noty.layouts.inline = { 4 | name: 'inline', 5 | options: {}, 6 | container: { 7 | object: '
              ', 8 | selector: 'ul#noty_inline_layout_container', 9 | style: function() { 10 | $(this).css({ 11 | width: '100%', 12 | height: 'auto', 13 | margin: 0, 14 | padding: 0, 15 | listStyleType: 'none', 16 | zIndex: 9999999 17 | }); 18 | } 19 | }, 20 | parent: { 21 | object: '
            • ', 22 | selector: 'li', 23 | css: {} 24 | }, 25 | css: { 26 | display: 'none' 27 | }, 28 | addClass: '' 29 | }; 30 | 31 | })(jQuery); -------------------------------------------------------------------------------- /themes/yboard/js/noty/js/noty/layouts/top.js: -------------------------------------------------------------------------------- 1 | ;(function($) { 2 | 3 | $.noty.layouts.top = { 4 | name: 'top', 5 | options: {}, 6 | container: { 7 | object: '
                ', 8 | selector: 'ul#noty_top_layout_container', 9 | style: function() { 10 | $(this).css({ 11 | top: 0, 12 | left: '5%', 13 | position: 'fixed', 14 | width: '90%', 15 | height: 'auto', 16 | margin: 0, 17 | padding: 0, 18 | listStyleType: 'none', 19 | zIndex: 9999999 20 | }); 21 | } 22 | }, 23 | parent: { 24 | object: '
              • ', 25 | selector: 'li', 26 | css: {} 27 | }, 28 | css: { 29 | display: 'none' 30 | }, 31 | addClass: '' 32 | }; 33 | 34 | })(jQuery); -------------------------------------------------------------------------------- /themes/yboard/js/noty/js/noty/layouts/topCenter.js: -------------------------------------------------------------------------------- 1 | ;(function($) { 2 | 3 | $.noty.layouts.topCenter = { 4 | name: 'topCenter', 5 | options: { // overrides options 6 | 7 | }, 8 | container: { 9 | object: '
                  ', 10 | selector: 'ul#noty_topCenter_layout_container', 11 | style: function() { 12 | $(this).css({ 13 | top: 20, 14 | left: 0, 15 | position: 'fixed', 16 | width: '310px', 17 | height: 'auto', 18 | margin: 0, 19 | padding: 0, 20 | listStyleType: 'none', 21 | zIndex: 10000000 22 | }); 23 | 24 | $(this).css({ 25 | left: ($(window).width() - $(this).outerWidth(false)) / 2 + 'px' 26 | }); 27 | } 28 | }, 29 | parent: { 30 | object: '
                • ', 31 | selector: 'li', 32 | css: {} 33 | }, 34 | css: { 35 | display: 'none', 36 | width: '310px' 37 | }, 38 | addClass: '' 39 | }; 40 | 41 | })(jQuery); 42 | -------------------------------------------------------------------------------- /themes/yboard/js/noty/js/noty/layouts/topLeft.js: -------------------------------------------------------------------------------- 1 | ;(function($) { 2 | 3 | $.noty.layouts.topLeft = { 4 | name: 'topLeft', 5 | options: { // overrides options 6 | 7 | }, 8 | container: { 9 | object: '
                    ', 10 | selector: 'ul#noty_topLeft_layout_container', 11 | style: function() { 12 | $(this).css({ 13 | top: 20, 14 | left: 20, 15 | position: 'fixed', 16 | width: '310px', 17 | height: 'auto', 18 | margin: 0, 19 | padding: 0, 20 | listStyleType: 'none', 21 | zIndex: 10000000 22 | }); 23 | 24 | if (window.innerWidth < 600) { 25 | $(this).css({ 26 | left: 5 27 | }); 28 | } 29 | } 30 | }, 31 | parent: { 32 | object: '
                  • ', 33 | selector: 'li', 34 | css: {} 35 | }, 36 | css: { 37 | display: 'none', 38 | width: '310px' 39 | }, 40 | addClass: '' 41 | }; 42 | 43 | })(jQuery); -------------------------------------------------------------------------------- /themes/yboard/js/noty/js/noty/layouts/topRight.js: -------------------------------------------------------------------------------- 1 | ;(function($) { 2 | 3 | $.noty.layouts.topRight = { 4 | name: 'topRight', 5 | options: { // overrides options 6 | 7 | }, 8 | container: { 9 | object: '
                      ', 10 | selector: 'ul#noty_topRight_layout_container', 11 | style: function() { 12 | $(this).css({ 13 | top: 20, 14 | right: 20, 15 | position: 'fixed', 16 | width: '310px', 17 | height: 'auto', 18 | margin: 0, 19 | padding: 0, 20 | listStyleType: 'none', 21 | zIndex: 10000000 22 | }); 23 | 24 | if (window.innerWidth < 600) { 25 | $(this).css({ 26 | right: 5 27 | }); 28 | } 29 | } 30 | }, 31 | parent: { 32 | object: '
                    • ', 33 | selector: 'li', 34 | css: {} 35 | }, 36 | css: { 37 | display: 'none', 38 | width: '310px' 39 | }, 40 | addClass: '' 41 | }; 42 | 43 | })(jQuery); -------------------------------------------------------------------------------- /themes/yboard/views/admin/adverts/create.php: -------------------------------------------------------------------------------- 1 | breadcrumbs = array( 6 | Yii::t('lang','Bulletins') => array('index'), 7 | Yii::t('lang','Create'), 8 | ); 9 | 10 | $this->menu = array( 11 | array('label' => Yii::t('lang','List Bulletin'), 'icon' => 'icon-list', 'url' => array('index')), 12 | array('label' => Yii::t('lang','Manage Bulletin'), 'icon' => 'icon-folder-open', 'url' => array('admin')), 13 | ); 14 | ?> 15 | 16 |

                      17 | 18 | renderPartial('_form', array('model' => $model)); ?> -------------------------------------------------------------------------------- /themes/yboard/views/admin/adverts/update.php: -------------------------------------------------------------------------------- 1 | breadcrumbs = array( 6 | Yii::t('lang','Bulletins') => array('index'), 7 | $model->name => array('view', 'id' => $model->id), 8 | Yii::t('lang','Update'), 9 | ); 10 | 11 | $this->menu = array( 12 | array('label' => Yii::t('lang','List Bulletin'), 'icon' => 'icon-list', 'url' => array('index')), 13 | array('label' => Yii::t('lang','Create Bulletin'), 'icon' => 'icon-plus', 'url' => array('create')), 14 | array('label' => Yii::t('lang','View Bulletin'), 'icon' => ' icon-eye-open', 'url' => array('view', 'id' => $model->id)), 15 | array('label' => Yii::t('lang','Manage Bulletin'), 'icon' => 'icon-folder-open', 'url' => array('admin')), 16 | ); 17 | ?> 18 | 19 |

                      id; ?>

                      20 | 21 | renderPartial('_form', array('model' => $model)); ?> -------------------------------------------------------------------------------- /themes/yboard/views/admin/answer/create.php: -------------------------------------------------------------------------------- 1 | breadcrumbs = array( 6 | Yii::t('lang','Answers') => array('index'), 7 | Yii::t('lang','Create'), 8 | ); 9 | 10 | $this->menu = array( 11 | array('label' => Yii::t('lang','List Answer'), 'icon' => 'icon-list', 'url' => array('index')), 12 | array('label' => Yii::t('lang','Manage Answer'), 'icon' => 'icon-folder-open', 'url' => array('admin')), 13 | ); 14 | ?> 15 | 16 |

                      17 | 18 | renderPartial('_form', array('model' => $model)); ?> -------------------------------------------------------------------------------- /themes/yboard/views/admin/answer/index.php: -------------------------------------------------------------------------------- 1 | breadcrumbs = array( 6 | Yii::t('lang','Answers'), 7 | ); 8 | 9 | $this->menu = array( 10 | array('label' => Yii::t('lang','Create Answer'), 'icon' => 'icon-plus', 'url' => array('create')), 11 | array('label' => Yii::t('lang','Manage Answer'), 'icon' => 'icon-folder-open', 'url' => array('admin')), 12 | ); 13 | ?> 14 | 15 |

                      16 | 17 | widget('bootstrap.widgets.TbListView', array( 19 | 'dataProvider' => $dataProvider, 20 | 'itemView' => '_view', 21 | )); 22 | ?> 23 | 24 | 25 | 28 | -------------------------------------------------------------------------------- /themes/yboard/views/admin/answer/update.php: -------------------------------------------------------------------------------- 1 | breadcrumbs = array( 6 | AdminModule::t('Answers') => array('index'), 7 | $model->id => array('view', 'id' => $model->id), 8 | AdminModule::t('Update'), 9 | ); 10 | 11 | $this->menu = array( 12 | array('label' => AdminModule::t('List Answer'), 'icon' => 'icon-list', 'url' => array('index')), 13 | array('label' => AdminModule::t('Create Answer'), 'icon' => 'icon-plus', 'url' => array('create')), 14 | array('label' => AdminModule::t('View Answer'), 'icon' => ' icon-eye-open', 'url' => array('view', 'id' => $model->id)), 15 | array('label' => AdminModule::t('Manage Answer'), 'icon' => 'icon-folder-open', 'url' => array('admin')), 16 | ); 17 | ?> 18 | 19 |

                      id; ?>

                      20 | 21 | renderPartial('_form', array('model' => $model)); ?> -------------------------------------------------------------------------------- /themes/yboard/views/admin/category/_view.php: -------------------------------------------------------------------------------- 1 | 5 | 6 |
                      7 | 8 | 9 | 10 | 13 | 14 | 15 | 16 | 19 | 20 | 21 | 24 | 25 |
                      getAttributeLabel('id')); ?>: 11 | id), array('view', 'id' => $data->id)); ?> 12 |
                      getAttributeLabel('name')); ?>: 17 | name); ?> 18 |
                      getAttributeLabel('icon')); ?>: 22 | icon); ?> 23 |
                      26 | 27 |
                      -------------------------------------------------------------------------------- /themes/yboard/views/admin/category/create.php: -------------------------------------------------------------------------------- 1 | breadcrumbs = array( 6 | Yii::t('lang','Categories') => array('index'), 7 | Yii::t('lang','Create'), 8 | ); 9 | 10 | $this->menu = array( 11 | array('label' => Yii::t('lang','List Category'), 'icon' => 'icon-list', 'url' => array('index')), 12 | array('label' => Yii::t('lang','Manage Category'), 'icon' => 'icon-folder-open', 'url' => array('admin')), 13 | ); 14 | ?> 15 | 16 |

                      17 | 18 | renderPartial('_form', array('model' => $model)); ?> -------------------------------------------------------------------------------- /themes/yboard/views/admin/default/config.php: -------------------------------------------------------------------------------- 1 | pageTitle = Yii::app()->name . ' - Настройки'; 7 | $this->breadcrumbs = array( 8 | 'Настройки', 9 | ); 10 | ?> 11 | 12 |

                      Настройки

                      13 | 14 | widget('application.extensions.Configer.Configer', array( 16 | 'configPath' => $configPath 17 | )); 18 | ?> 19 | -------------------------------------------------------------------------------- /themes/yboard/views/adverts/_view_short.php: -------------------------------------------------------------------------------- 1 | 10 | gallery->galleryPhotos[0]; ?> 11 | 13 | <? echo CHtml::encode($data->name) ?> 15 | -------------------------------------------------------------------------------- /themes/yboard/views/adverts/category.php: -------------------------------------------------------------------------------- 1 | pageTitle=Yii::app()->name; 6 | $this->breadcrumbs = array(); 7 | if ($model->parent) 8 | $this->breadcrumbs[$model->parent->name] = array('site/category', 'id' => $model->parent->id); 9 | $this->breadcrumbs[] = CHtml::encode($model->name); 10 | ?> 11 | 12 |

                      Категория "name)?>"

                      13 | 14 | widget('bootstrap.widgets.TbListView', array( 15 | 'dataProvider'=>$dataProvider, 16 | 'itemView'=>'_view', 17 | )); ?> 18 | 19 | -------------------------------------------------------------------------------- /themes/yboard/views/adverts/create.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 6 | 'Добавить объявление', 7 | ); 8 | 9 | ?> 10 | 11 |

                      Добавить объявление

                      12 | 13 | renderPartial('_form', array('model'=>$model)); ?> 14 | -------------------------------------------------------------------------------- /themes/yboard/views/adverts/index.php: -------------------------------------------------------------------------------- 1 | pageTitle = Yii::app()->name; 5 | 6 | if(!$results) { 7 | echo "
                      ".t("No results for full search. Show simplified search results:")."
                      "; 8 | } 9 | 10 | $this->widget('zii.widgets.CListView', array( 11 | 'dataProvider'=>$data, 12 | 'itemView'=>'_view', 13 | 'ajaxUpdate'=>false, 14 | )); ?> 15 | 16 | -------------------------------------------------------------------------------- /themes/yboard/views/adverts/update.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 6 | 'Reviews'=>array('index'), 7 | $model->id=>array('view','id'=>$model->id), 8 | 'Update', 9 | ); 10 | 11 | $this->menu=array( 12 | array('label'=>'List Reviews', 'url'=>array('index')), 13 | array('label'=>'Create Reviews', 'url'=>array('create')), 14 | array('label'=>'View Reviews', 'url'=>array('view', 'id'=>$model->id)), 15 | array('label'=>'Manage Reviews', 'url'=>array('admin')), 16 | ); 17 | ?> 18 | 19 |

                      "name; ?>"

                      20 | 21 | renderPartial('_form', array('model'=>$model)); ?> -------------------------------------------------------------------------------- /themes/yboard/views/cms/_install/index.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | 'Install Site Structure mosule', 4 | ); 5 | ?> 6 |

                      Install Site Structure module

                      7 | 8 |

                      9 | '.$this->tableName.' already exists'; 14 | ?> 15 |

                      16 | 17 |

                      18 | 19 | 22 | 23 | -------------------------------------------------------------------------------- /themes/yboard/views/cms/cms/create.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | 'Cms'=>array('admin'), 4 | 'Create', 5 | ); 6 | 7 | $this->menu=array( 8 | array('label'=>'Manage Cms', 'url'=>array('admin')), 9 | ); 10 | 11 | ?> 12 | 13 |

                      Create getPageType($_GET['type']); ?>

                      14 | 15 | renderPartial('forms/'.$this->getFormPartial(), array('model'=>$model)); ?> -------------------------------------------------------------------------------- /themes/yboard/views/cms/cms/default.php: -------------------------------------------------------------------------------- 1 | breadcrumbs = $page->breadcrumbs; 3 | ?> 4 | 5 |

                      name; ?>

                      6 | 7 |

                      content; ?>

                      -------------------------------------------------------------------------------- /themes/yboard/views/cms/cms/index.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | 'Cms', 4 | ); 5 | 6 | $this->menu=array( 7 | array('label'=>'Create Cms', 'url'=>array('create')), 8 | array('label'=>'Manage Cms', 'url'=>array('admin')), 9 | ); 10 | ?> 11 | 12 |

                      Cms

                      13 | 14 | widget('zii.widgets.CListView', array( 15 | 'dataProvider'=>$dataProvider, 16 | 'itemView'=>'_view', 17 | )); ?> 18 | 19 | 20 | 23 | 24 | -------------------------------------------------------------------------------- /themes/yboard/views/cms/cms/update.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | 'Cms'=>array('index'), 4 | $model->name=>array('view','id'=>$model->id), 5 | 'Update', 6 | ); 7 | 8 | $this->menu=array( 9 | array('label'=>t('View')." ".$model->name, 'url'=>array('view','id'=>$model->id)), 10 | array('label'=>t('List pages'), 'url'=>array('index')), 11 | ); 12 | ?> 13 | 14 |

                      name; ?>

                      15 | 16 | renderPartial('forms/'.$this->getFormPartial($model), array('model'=>$model)); ?> -------------------------------------------------------------------------------- /themes/yboard/views/cms/cms/view.php: -------------------------------------------------------------------------------- 1 | getAdminBreadcrumbs(true); 4 | 5 | $this->breadcrumbs = array_merge(array( 6 | 'Cms'=>array('index'), 7 | ), $path,array('View')); 8 | 9 | $this->menu=array( 10 | array('label'=>t('Update')." \"".$model->name."\"", 'url'=>array('update', 'id'=>$model->id)), 11 | array('label'=>t('Delete'), 'url'=>'#', 'linkOptions'=>array('submit'=>array('delete','id'=>$model->id),'confirm'=>'Are you sure you want to delete this item?'),'visible'=>$model->id!=1), 12 | array('label'=>t('Manage pages'), 'url'=>array('admin','parent_id'=>$model->parent_id ? $model->parent_id : 1)), 13 | ); 14 | ?> 15 | 16 |

                      name) ?>

                      17 |

                      pageType ?>

                      18 | 19 | renderPartial('view/'.$this->getFormPartial($model),array('model'=>$model)); 21 | ?> 22 | 23 | -------------------------------------------------------------------------------- /themes/yboard/views/cms/cms/view/link.php: -------------------------------------------------------------------------------- 1 | type==Cms::LINK; 3 | $this->widget('zii.widgets.CDetailView', array( 4 | 'data'=>$model, 5 | 'attributes'=>array( 6 | array( 7 | 'name'=>'Link label', 8 | 'value'=>$model->name, 9 | ), 10 | array( 11 | 'name'=>'Url', 12 | 'type'=>'raw', 13 | 'value'=>CHtml::link($model->url, 14 | !$isLink ? array("/".$model->url) : $model->url, 15 | array( 16 | 'target'=>'_blank', 17 | 'style'=>"color:#666;font-size:11px;", 18 | 'title'=>'Follow link', 19 | ) 20 | ), 21 | ), 22 | ), 23 | )); ?> -------------------------------------------------------------------------------- /themes/yboard/views/cms/cms/view/page.php: -------------------------------------------------------------------------------- 1 | type==Cms::LINK; 3 | $this->widget('zii.widgets.CDetailView', array( 4 | 'data'=>$model, 5 | 'attributes'=>array( 6 | array( 7 | 'name'=>'Link', 8 | 'type'=>'raw', 9 | 'value'=>CHtml::link($model->url, 10 | !$isLink ? array("/".$model->url) : $model->url, 11 | array( 12 | 'target'=>'_blank', 13 | 'style'=>"color:#666;font-size:11px;", 14 | 'title'=>'View on site', 15 | ) 16 | ), 17 | ), 18 | 'name', 19 | 'content:html', 20 | array( 21 | 'name'=>'Page access', 22 | 'value'=>$model->accessLevel, 23 | ), 24 | 'title', 25 | 'keywords', 26 | 'description', 27 | 'layout', 28 | 'section', 29 | 'subsection', 30 | ), 31 | )); ?> -------------------------------------------------------------------------------- /themes/yboard/views/cms/cms/view/root.php: -------------------------------------------------------------------------------- 1 | type==Cms::LINK; 3 | $this->widget('zii.widgets.CDetailView', array( 4 | 'data'=>$model, 5 | 'attributes'=>array( 6 | 'name', 7 | 'content:html', 8 | array( 9 | 'name'=>'Page access', 10 | 'value'=>$model->accessLevel, 11 | ), 12 | 'title', 13 | 'keywords', 14 | 'description', 15 | 'layout', 16 | 'section', 17 | 'subsection', 18 | ), 19 | )); ?> -------------------------------------------------------------------------------- /themes/yboard/views/cms/default.php: -------------------------------------------------------------------------------- 1 | breadcrumbs = $page->breadcrumbs; 3 | ?> 4 | 5 |

                      name; ?>

                      6 | 7 |

                      content; ?>

                      -------------------------------------------------------------------------------- /themes/yboard/views/cms/error.php: -------------------------------------------------------------------------------- 1 | pageTitle=Yii::app()->name . ' - Error'; 3 | $this->breadcrumbs=array( 4 | 'Error', 5 | ); 6 | ?> 7 | 8 |

                      Error exception->statusCode; ?>

                      9 | 10 |
                      11 | exception->getMessage()); ?> 12 |
                      -------------------------------------------------------------------------------- /themes/yboard/views/cms/layouts/cms.php: -------------------------------------------------------------------------------- 1 | beginContent('//layouts/main_cms'); ?> 2 |
                      3 |
                      4 |
                      5 | 6 |
                      7 |
                      8 |
                      9 | 21 |
                      22 |
                      23 | endContent(); ?> -------------------------------------------------------------------------------- /themes/yboard/views/cms/sections/index.php: -------------------------------------------------------------------------------- 1 | content; ?> 2 | 3 | 4 | 7 | 8 | -------------------------------------------------------------------------------- /themes/yboard/views/cms/sections/section_sample.php: -------------------------------------------------------------------------------- 1 | breadcrumbs = $page->breadcrumbs; 3 | ?> 4 |
                      5 | 6 | section: 7 |

                      name;?>

                      8 | 9 |

                      10 | 11 |

                      content; ?>

                      12 | 13 |
                      -------------------------------------------------------------------------------- /themes/yboard/views/cms/subsections/subsection_sample.php: -------------------------------------------------------------------------------- 1 |
                      2 | 3 | subsection: 4 | 5 |

                      content; ?>

                      6 | 7 |
                      -------------------------------------------------------------------------------- /themes/yboard/views/company/create.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 6 | 'Messages'=>array('index'), 7 | 'Create', 8 | ); 9 | 10 | $this->menu=array( 11 | array('label'=>'List Messages', 'url'=>array('index')), 12 | array('label'=>'Manage Messages', 'url'=>array('admin')), 13 | ); 14 | ?> 15 | 16 |

                      Create Messages

                      17 | 18 | renderPartial('_form', array('model'=>$model)); ?> -------------------------------------------------------------------------------- /themes/yboard/views/company/index.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 6 | 'Messages', 7 | ); 8 | 9 | $this->menu=array( 10 | array('label'=>'Create Messages', 'url'=>array('create')), 11 | array('label'=>'Manage Messages', 'url'=>array('admin')), 12 | ); 13 | ?> 14 | 15 |

                      Messages

                      16 | 17 | widget('zii.widgets.CListView', array( 18 | 'dataProvider'=>$dataProvider, 19 | 'itemView'=>'_view', 20 | )); ?> 21 | 22 | 23 | 26 | 27 | -------------------------------------------------------------------------------- /themes/yboard/views/company/update.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 6 | 'Messages'=>array('index'), 7 | $model->id=>array('view','id'=>$model->id), 8 | 'Update', 9 | ); 10 | 11 | $this->menu=array( 12 | array('label'=>'List Messages', 'url'=>array('index')), 13 | array('label'=>'Create Messages', 'url'=>array('create')), 14 | array('label'=>'View Messages', 'url'=>array('view', 'id'=>$model->id)), 15 | array('label'=>'Manage Messages', 'url'=>array('admin')), 16 | ); 17 | ?> 18 | 19 |

                      Update Messages id; ?>

                      20 | 21 | renderPartial('_form', array('model'=>$model)); ?> -------------------------------------------------------------------------------- /themes/yboard/views/company/view.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 6 | 'Messages'=>array('index'), 7 | $model->id, 8 | ); 9 | 10 | $this->menu=array( 11 | array('label'=>'List Messages', 'url'=>array('index')), 12 | array('label'=>'Create Messages', 'url'=>array('create')), 13 | array('label'=>'Update Messages', 'url'=>array('update', 'id'=>$model->id)), 14 | array('label'=>'Delete Messages', 'url'=>'#', 'linkOptions'=>array('submit'=>array('delete','id'=>$model->id),'confirm'=>'Are you sure you want to delete this item?')), 15 | array('label'=>'Manage Messages', 'url'=>array('admin')), 16 | ); 17 | ?> 18 | 19 |

                      View Messages #id; ?>

                      20 | 21 | widget('zii.widgets.CDetailView', array( 22 | 'data'=>$model, 23 | 'attributes'=>array( 24 | 'id', 25 | 'sender_id', 26 | 'receiver_id', 27 | 'message', 28 | 'send_date', 29 | 'read_date', 30 | ), 31 | )); ?> 32 | -------------------------------------------------------------------------------- /themes/yboard/views/favorites/_view.php: -------------------------------------------------------------------------------- 1 | 5 | 6 |
                      7 | 8 | getAttributeLabel('id')); ?>: 9 | id), array('view', 'id'=>$data->id)); ?> 10 |
                      11 | 12 | getAttributeLabel('user_id')); ?>: 13 | user_id); ?> 14 |
                      15 | 16 | getAttributeLabel('obj_id')); ?>: 17 | obj_id); ?> 18 |
                      19 | 20 | getAttributeLabel('obj_type')); ?>: 21 | obj_type); ?> 22 |
                      23 | 24 | 25 |
                      -------------------------------------------------------------------------------- /themes/yboard/views/favorites/create.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 6 | 'Favorites'=>array('index'), 7 | 'Create', 8 | ); 9 | 10 | $this->menu=array( 11 | array('label'=>'List Favorites', 'url'=>array('index')), 12 | array('label'=>'Manage Favorites', 'url'=>array('admin')), 13 | ); 14 | ?> 15 | 16 |

                      Create Favorites

                      17 | 18 | renderPartial('_form', array('model'=>$model)); ?> -------------------------------------------------------------------------------- /themes/yboard/views/favorites/index.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 6 | 'Favorites', 7 | ); 8 | 9 | $this->menu=array( 10 | array('label'=>'Create Favorites', 'url'=>array('create')), 11 | array('label'=>'Manage Favorites', 'url'=>array('admin')), 12 | ); 13 | ?> 14 | 15 |

                      Favorites

                      16 | 17 | widget('zii.widgets.CListView', array( 18 | 'dataProvider'=>$dataProvider, 19 | 'itemView'=>'_view', 20 | )); ?> 21 | 22 | 23 | 26 | 27 | -------------------------------------------------------------------------------- /themes/yboard/views/favorites/update.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 6 | 'Favorites'=>array('index'), 7 | $model->id=>array('view','id'=>$model->id), 8 | 'Update', 9 | ); 10 | 11 | $this->menu=array( 12 | array('label'=>'List Favorites', 'url'=>array('index')), 13 | array('label'=>'Create Favorites', 'url'=>array('create')), 14 | array('label'=>'View Favorites', 'url'=>array('view', 'id'=>$model->id)), 15 | array('label'=>'Manage Favorites', 'url'=>array('admin')), 16 | ); 17 | ?> 18 | 19 |

                      Update Favorites id; ?>

                      20 | 21 | renderPartial('_form', array('model'=>$model)); ?> -------------------------------------------------------------------------------- /themes/yboard/views/favorites/view.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 6 | 'Favorites'=>array('index'), 7 | $model->id, 8 | ); 9 | 10 | $this->menu=array( 11 | array('label'=>'List Favorites', 'url'=>array('index')), 12 | array('label'=>'Create Favorites', 'url'=>array('create')), 13 | array('label'=>'Update Favorites', 'url'=>array('update', 'id'=>$model->id)), 14 | array('label'=>'Delete Favorites', 'url'=>'#', 'linkOptions'=>array('submit'=>array('delete','id'=>$model->id),'confirm'=>'Are you sure you want to delete this item?')), 15 | array('label'=>'Manage Favorites', 'url'=>array('admin')), 16 | ); 17 | ?> 18 | 19 |

                      View Favorites #id; ?>

                      20 | 21 | widget('zii.widgets.CDetailView', array( 22 | 'data'=>$model, 23 | 'attributes'=>array( 24 | 'id', 25 | 'user_id', 26 | 'obj_id', 27 | 'obj_type', 28 | ), 29 | )); ?> 30 | -------------------------------------------------------------------------------- /themes/yboard/views/mail/delivery.php: -------------------------------------------------------------------------------- 1 | 6 | 7 |
                      8 | 9 | beginWidget('CActiveForm', array( 10 | 'id'=>'messages-form', 11 | 'enableAjaxValidation'=>false, 12 | 'action'=>Yii::app()->createUrl('messages/create',array('id'=>$receiver)) 13 | )); ?> 14 | 15 | errorSummary($model); ?> 16 | 17 |
                      18 | labelEx($model,'message'); ?> 19 | textArea($model,'message',array('rows'=>4, 'class'=>'wide')); ?> 20 | error($model,'message'); ?> 21 |
                      22 | 23 | 24 |
                      25 | isNewRecord ? t('Send') : t('Save'), array('class'=>'btn')); ?> 26 |
                      27 | 28 | endWidget(); ?> 29 | 30 |
                      -------------------------------------------------------------------------------- /themes/yboard/views/messages/_list.php: -------------------------------------------------------------------------------- 1 | 5 | 6 |
                      7 | 8 | 9 | 10 | 11 | 12 | 13 | $data['interlocutor'])); ?>'> 14 |
                      15 | Сообщений () 16 | 17 |
                      -------------------------------------------------------------------------------- /themes/yboard/views/messages/_view.php: -------------------------------------------------------------------------------- 1 | 7 | 8 |
                      9 | 10 | sender->username); ?> 11 | 12 | (send_date); ?>) 13 | : 14 |
                      15 | message; ?> 16 | 17 |
                      -------------------------------------------------------------------------------- /themes/yboard/views/messages/create.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 6 | 'Messages'=>array('index'), 7 | 'Create', 8 | ); 9 | 10 | $this->menu=array( 11 | array('label'=>'List Messages', 'url'=>array('index')), 12 | array('label'=>'Manage Messages', 'url'=>array('admin')), 13 | ); 14 | 15 | //var_dump(User::model()->findByPk($receiver)->id); 16 | 17 | 18 | ?> 19 | 20 | 25 | 26 | renderPartial('_form', array('model'=>$model, 'receiver'=>$receiver)); ?> -------------------------------------------------------------------------------- /themes/yboard/views/messages/dialog.php: -------------------------------------------------------------------------------- 1 | 7 | 8 |

                      с 9 | $userData->id))?>'> 10 | username?> 11 |

                      12 | 13 |
                      14 | widget('zii.widgets.CListView', array( 15 | 'dataProvider'=>$dataProvider, 16 | 'itemView'=>'_view', 17 | )); ?> 18 |
                      19 | 20 | renderPartial('_form', array('model'=>$model, 'receiver'=>$userData->id)); ?> -------------------------------------------------------------------------------- /themes/yboard/views/messages/index.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 6 | t('Messages'), 7 | ); 8 | 9 | $this->menu=array( 10 | array('label'=>'Create Messages', 'url'=>array('create')), 11 | array('label'=>'Manage Messages', 'url'=>array('admin')), 12 | ); 13 | 14 | ?> 15 | 16 |

                      17 | 18 | widget('zii.widgets.CListView', array( 19 | 'dataProvider'=>$dataProvider, 20 | 'itemView'=>'_list', 21 | )); ?> 22 | 23 | 24 | 27 | 28 | -------------------------------------------------------------------------------- /themes/yboard/views/messages/update.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 6 | 'Messages'=>array('index'), 7 | $model->id=>array('view','id'=>$model->id), 8 | 'Update', 9 | ); 10 | 11 | $this->menu=array( 12 | array('label'=>'List Messages', 'url'=>array('index')), 13 | array('label'=>'Create Messages', 'url'=>array('create')), 14 | array('label'=>'View Messages', 'url'=>array('view', 'id'=>$model->id)), 15 | array('label'=>'Manage Messages', 'url'=>array('admin')), 16 | ); 17 | ?> 18 | 19 |

                      Update Messages id; ?>

                      20 | 21 | renderPartial('_form', array('model'=>$model)); ?> -------------------------------------------------------------------------------- /themes/yboard/views/reviews/create.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 6 | 'Reviews'=>array('index'), 7 | 'Create', 8 | ); 9 | 10 | $this->menu=array( 11 | array('label'=>'List Reviews', 'url'=>array('index')), 12 | array('label'=>'Manage Reviews', 'url'=>array('admin')), 13 | ); 14 | ?> 15 | 16 |

                      Create Reviews

                      17 | 18 | renderPartial('_form', array('model'=>$model)); ?> -------------------------------------------------------------------------------- /themes/yboard/views/reviews/index.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 6 | 'Reviews', 7 | ); 8 | 9 | $this->menu=array( 10 | array('label'=>'Create Reviews', 'url'=>array('create')), 11 | array('label'=>'Manage Reviews', 'url'=>array('admin')), 12 | ); 13 | ?> 14 | 15 |

                      Reviews

                      16 | 17 | widget('zii.widgets.CListView', array( 18 | 'dataProvider'=>$dataProvider, 19 | 'itemView'=>'_view', 20 | )); ?> 21 | 22 | 23 | 26 | 27 | -------------------------------------------------------------------------------- /themes/yboard/views/reviews/update.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 6 | 'Reviews'=>array('index'), 7 | $model->id=>array('view','id'=>$model->id), 8 | 'Update', 9 | ); 10 | 11 | $this->menu=array( 12 | array('label'=>'List Reviews', 'url'=>array('index')), 13 | array('label'=>'Create Reviews', 'url'=>array('create')), 14 | array('label'=>'View Reviews', 'url'=>array('view', 'id'=>$model->id)), 15 | array('label'=>'Manage Reviews', 'url'=>array('admin')), 16 | ); 17 | ?> 18 | 19 |

                      Update Reviews id; ?>

                      20 | 21 | renderPartial('_form', array('model'=>$model)); ?> -------------------------------------------------------------------------------- /themes/yboard/views/reviews/view.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 6 | 'Reviews'=>array('index'), 7 | $model->id, 8 | ); 9 | 10 | $this->menu=array( 11 | array('label'=>'List Reviews', 'url'=>array('index')), 12 | array('label'=>'Create Reviews', 'url'=>array('create')), 13 | array('label'=>'Update Reviews', 'url'=>array('update', 'id'=>$model->id)), 14 | array('label'=>'Delete Reviews', 'url'=>'#', 'linkOptions'=>array('submit'=>array('delete','id'=>$model->id),'confirm'=>'Are you sure you want to delete this item?')), 15 | array('label'=>'Manage Reviews', 'url'=>array('admin')), 16 | ); 17 | ?> 18 | 19 |

                      View Reviews #id; ?>

                      20 | 21 | widget('zii.widgets.CDetailView', array( 22 | 'data'=>$model, 23 | 'attributes'=>array( 24 | 'id', 25 | 'profile_id', 26 | 'user_id', 27 | 'type', 28 | 'review', 29 | 'vote', 30 | ), 31 | )); ?> 32 | -------------------------------------------------------------------------------- /themes/yboard/views/site/error.php: -------------------------------------------------------------------------------- 1 | pageTitle = Yii::app()->name . ' - Error'; 6 | $this->widget('bootstrap.widgets.TbBreadcrumbs', array( 7 | 'links' => array('', 'Error'), 8 | )); 9 | ?> 10 |
                      11 |
                      12 |

                      Error

                      13 | 14 |
                      15 |
                      16 | 17 | 18 | -------------------------------------------------------------------------------- /themes/yboard/views/site/search.php: -------------------------------------------------------------------------------- 1 | widget('bootstrap.widgets.TbListView', array( 11 | 'dataProvider' => $model->search(), 12 | 'itemView' => '_view', 13 | )); 14 | ?> -------------------------------------------------------------------------------- /themes/yboard/views/site/sitemap.php: -------------------------------------------------------------------------------- 1 | 11 | -------------------------------------------------------------------------------- /themes/yboard/views/site/sitemapxml.php: -------------------------------------------------------------------------------- 1 | ' ?> 2 | 3 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /themes/yboard/views/user/index.php: -------------------------------------------------------------------------------- 1 | breadcrumbs = array( 3 | t("Users"), 4 | ); 5 | if (Yii::app()->user->isAdmin()) { 6 | $this->layout = '//main-template'; 7 | $this->menu = array( 8 | array('label' => t('Manage Users'), 'icon' => 'icon-folder-open', 'url' => array('/user/admin')), 9 | array('label' => t('Manage Profile Field'), 'icon' => 'icon-list-alt', 'url' => array('profileField/admin')), 10 | ); 11 | } 12 | ?> 13 | 14 |

                      15 | 16 | widget('zii.widgets.grid.CGridView', array( 18 | 'dataProvider' => $dataProvider, 19 | 'columns' => array( 20 | array( 21 | 'name' => 'username', 22 | 'type' => 'raw', 23 | 'value' => 'CHtml::link(CHtml::encode($data->username),array("user/view","id"=>$data->id))', 24 | ), 25 | 'create_at', 26 | 'lastvisit_at', 27 | ), 28 | )); 29 | ?> 30 | 31 | 32 | 35 | -------------------------------------------------------------------------------- /themes/yboard/views/user/message.php: -------------------------------------------------------------------------------- 1 | pageTitle=Yii::app()->name . ' - '.t("Login"); ?> 2 | 3 |

                      4 | 5 |
                      6 | 7 | 8 |
                      -------------------------------------------------------------------------------- /themes/yboard/views/user/update.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 6 | t('Profile')=>array('user', array("id" => $model->id)), 7 | t('Update'), 8 | ); 9 | 10 | 11 | ?> 12 | 13 |

                      14 | 15 | renderPartial('_form', array('model'=>$model)); ?> --------------------------------------------------------------------------------