Binpress components2011-09-06T20:59:27+00:00Zend_Feed_Writerhttp://www.binpress.comBinpresscontact@binpress.comhttp://www.binpress.com2011-09-06T20:59:27+00:002011-09-06T20:59:27+00:00http://www.binpress.com/app/sendgridcodeigniter-pack/565SheerCInoreply@binpress.comhttp://www.binpress.comdev/profile/169SendGrid-CodeIgniter PackageThis package allows you to send emails through SendGrid, store all the analytics data in your database and get spam reports to your database.2011-08-28T10:30:40+00:002011-08-28T10:30:40+00:00http://www.binpress.com/app/lx-adjust-field/560Loupasakis Kostasnoreply@binpress.comhttp://www.binpress.comdev/profile/653An easy way to create "adjust fields" in your forms - numeric values that can be adjusted (increased and decreased) dynamically using plus and minus buttons.LX Adjust Field is an adjustable numeric value that uses familiar UI from games and application (plus / minus buttons). It can be assigned a pool of points and other restrictions.Example CodeRequires: jQuery.How to use it:Link to the form_helper.js file.Add the MY_form_helper.php file to your CodeIgniter helpers folder.Load the form helper class as you would normally using this line:$this->load->helper('form');After that, you can add the adjust field by using the line echo form_adjust($name,
$starting_value,
$is_numeric,
$point_increment,
$value_increment,
$min,
$max
); The only required values are the $name and $starting_value.If you wish to display a "Point pool" you must add a label with id points_left, and if you wish said point pool to be submitted, you may also add a hidden input with id points_left in your markup. Example:<input type="hidden" id="points_left" value="10"/> and
<label id="points_left">10</label>Parameters:$name => The name and id attributes of the input containing the value$starting_value => The value from where the counting starts. You can also set a character as a $starting value, just make sure the next property is set to true.$is_numeric => If true, the values will increase and decrease as numbers, else they will adjust as characters. Default value is true.$point_increment => This sets how many points will be substracted/added from/to the point pool on each click. Default value is 1.$value_increment => This input sets the amount of points added/substracted to the field value on each click. Default value is 1.$min => No matter how much you click the "minus" button, the value will not go below this value. Default value is -1000. Can also be a character.$max => Same thing... Default value is 1000 and can also be a character.2011-05-11T22:31:31+00:002011-05-11T22:31:31+00:00http://www.binpress.com/app/grocery-crud/373John Skoumbourdisnoreply@binpress.comhttp://www.binpress.comdev/profile/1161Just few lines of code and you can create a full stable CRUD with nice views. grocery CRUD is an automatic CRUD system that everyone can works with.Documenation of grocery CRUD »grocery CRUD is designed to make a web developer's life easier. You don’t have to do every time the copy-paste of thousands code lines and views and don’t be sure if it works or not. You don't need to test your backoffice again and again to create just ... a CRUD . All the levels of php developers, can use it . But why to use grocery CRUD ?First of all it works with codeigniter a really powerful frameworkSecond is really... really easyThird and most important its flexible.It has callbacks almost everywhere, so you have the opportunity to change everything.A php developer will write mostly only the business logic of the CRUD , no more javascripts no more views , no more css just ... PHP. Let's go to an example. Lets say you have a table named "customers" and the field names are: fullname, age , email, date_added , comments. To create the crud for the table customers you simply need just few lines of code ( afetr the installation of grocery CRUD of course)function customers(){
$this->grocery_crud->set_subject('Customer');
$this->grocery_crud->set_table('customers');
$this->grocery_crud->columns('fullname','age','email');
$this->grocery_crud->render();
}
That's it! you just create a full stable CRUD with nice views for the table customers. For more about how to use grocery CRUD you can see the online documentation.More examples for grocery CRUD you can see at the examples of grocery CRUD and for the documentation of the CRUD you can visit the webpage of grocery CRUDThe installation its really easy. You copy the files to your codeigniter project and its ready. For more about how to install it to your codeigniter project you can see it at installation of grocery CRUD2011-04-24T15:17:20+00:002011-04-24T15:17:20+00:00http://www.binpress.com/app/codeigniter-cms-backend/295iKFSystemsnoreply@binpress.comhttp://www.binpress.comdev/profile/846Content Management System backend based on the CodeIgniter framework.A CMS built on top of the CodeIgniter framework (1.7.3) that lets you make powerful websites with the HMVC model. Contains the CMS backend and a controller for content pages - build your application around this foundation and get started quickly.Default admin login is admin and password qwertz, it's used for demo too.What you get?Simple and clear admin interfaceEasy modules creation from datamapper modelsPrecreated pages and posts modulesGallery and downloads modules with multiupload (uploadify)Layout module - very usefull, you can define custom layout for each page or groups of pages by regexAuthentication classDocumentation is here http://dev.ikfsystems.sk/ikfa/user_guide/What's new:Version 2.2.1Release Date: May 13, 2013Fixed users adding. Passwords didn't hash.Added codemirror support in MmAdded ability to select related fields columnNew functions in text editor: ol numbering types (olAlphabetSmall, olAlphabetBig, olRomans, olRomansSmall), links with foreing domains get target "_blank" atributeVersion 2.2Release Date: February 3, 2013New Mm module, which allows as easily creating new modulesModules based on Mm, have automaticaly these functions: search(filter), batch edit relations/attributes, related fields with treeview, select, multiselect, checkbox and picker, image gallery and downloadsRefined user interface, new colors, cleaned styles and scripts, optimized sidebar hiddingNew functions in text editor: colors, text transformation and files uploadNew Pages module based on MmNew Users module based on Mm with User groups. Authorizations are defined for groups nowPreacreated example Posts moduleRemoved unused thingsOther fixes, which I'm not remeberVersion 2.1.1Release Date: March 14, 2012Added "Download all as ZIP" to
gallery moduleVersion 2.1Release Date: March 13, 2012Added drag and drop sortable to gallery moduleAdded ability to set image in gallery module as inlet imageAdded sorting to news moduleSome bugfixes in layout moduleSome bugfixes and cleanings in users moduleFixed initial database.sql file (it fixes 404 problem)Added missing .htaccess fileMany other bugfixes2011-04-07T08:45:20+00:002011-04-07T08:45:20+00:00http://www.binpress.com/app/codeigniter-user-authentication-library/232nerv Interactivenoreply@binpress.comhttp://www.binpress.comdev/profile/630A CodeIgniter User Authentication library, to take the hassle out of authenticating users.This library hashes passwords, realms and usernames using cryptographic nonces to minimise the risk of falsely identifying users.2011-04-05T14:01:19+00:002011-04-05T14:01:19+00:00http://www.binpress.com/app/codeigniter-template-library/223nerv Interactivenoreply@binpress.comhttp://www.binpress.comdev/profile/630Organise multiple views into complex, nested sections to create a fully functioning, yet modular, page.The CodeIgniter Template library enables you to organise multiple views into complex, nested sections providing each one with seperate data sets, controlling data propagation. These sections can be grouped, iterated and linked with automatic embedding to create a fully functioning, yet modular, page.2011-02-20T23:55:08+00:002011-02-20T23:55:08+00:00http://www.binpress.com/app/paypal-adaptive-payments-pro-payflow-codeigniter-library/140Angell EYEnoreply@binpress.comhttp://www.binpress.comdev/profile/114A custom library for CodeIgniter that provides access to all PayPal NVP, Authentication, Permissions, Adaptive Payments, and PayFlow API's.Overview
This library includes all of the PayPal NVP API calls as well as Adaptive Payments, Invoicing, Adaptive Accounts, Permissions, and PayFlow.The controller includes "template" methods for every call that includes all of the possible parameters that can be passed into that particular call. All you have to do is fill in the blank parameters in the array templates and pass that into the library method. An array will be returned with all of the response fields from PayPal as well as a few extra fields for troubleshooting purposes.PayPal Payments ProAddressVerifyBillAgreementUpdateBillOutstandingAmountCreateRecurringPaymentsProfileDoAuthorizationDoCaptureDoDirectPaymentDoExpressCheckoutPaymentDoMobileCheckoutPaymentDoNonReferencedCreditDoReauthorizationDoReferenceTransactionDoVoidGetAccessPermissionsDetailsGetAuthDetailsGetBalanceGetBillingAgreementCustomerDetailsGetExpressCheckoutDetailsGetTransactionDetailsManagePendingTransactionStatusManageRecurringPaymentsProfileStatusMassPayRefundTransactionSetAccessPermissionsSetExpressCheckoutSetMobileCheckoutTransactionSearchUpdateAccessPermissionsUpdateRecurringPaymentsProfilePayPal Adaptive PaymentsAddBankAccountAddPaymentCardCancelInvoiceCancelPermissionsCancelPreapprovalCreateAccountCreateAndSendInvoiceCreateInvoiceExecutePaymentGetAccessTokenGetAdvancedPersonalDataGetBasicPersonalDataGetFundingPlansGetInvoiceDetailsGetPaymentOptionsGetPermissionsGetShippingAddressGetVerifiedStatusMarkInvoiceAsPaidPayPaymentDetailsPreapprovalPreapprovalDetailsRefundRequestPermissionsSearchInvoicesSendInvoiceSetFundingSourceConfirmedSetPaymentOptionsUpdateInvoiceBMButtonSearchPayPal PayFlowAuthorizationBalance InquiryCreditDelayed CaptureVoice AuthorizationInquiryData UploadDuplicate TransactionSaleVoid2011-02-14T21:04:18+00:002011-02-14T21:04:18+00:00http://www.binpress.com/app/utahconsimpleauth/111Utahconnoreply@binpress.comhttp://www.binpress.comdev/profile/255I developed this small library to handle the most simple of authentication schemes for all my Code Igniter projectsI developed this small library to handle the most simple of authentication schemes for all my Code Igniter projects. This can be expanded on but assumes you have a users table in your database with a username, and password field. The password is the md5 of the actual password.The password hash generated is a regular md5() which is considered insecure. You can expand the operation of this authentication scheme by incoporating a salt and using a strong hashing function.