This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Concrete\Package\XXX\Src\Support; | |
use Concrete\Core\Editor\CkeditorEditor; | |
use Concrete\Core\Editor\Plugin; | |
use Concrete\Core\Editor\PluginManager; | |
use Concrete\Core\Foundation\Service\Provider as ServiceProvider; | |
/** | |
* $editor = Core::make('simple_editor'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
REPO_PATH=concrete5-develop | |
DB_HOST=localhost | |
DB_USER=root | |
DB_PASS= | |
DB_DBAS=concrete5 | |
ADMIN_EMAIL=no-reply@localhost |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$r = $im->getThumbnail($obj, $width, $height, $crop = false) | |
Returns a path to the specified item, resized to meet max width and height. $obj can either be a string (path) or a file object. Returns a PHP object with the following properties set | |
src - the relative path to the image (useful for display in browsers) | |
width - the new width of the image | |
height - the new height of the image | |
crop - crop image if dimensions exceed |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$im->outputThumbnail($obj, $maxWidth, $maxHeight, $alt = null, $return = false, $crop = false) | |
Runs getThumbnail on the $obj argument, and prints out or returns an IMG tag. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import <UIKit/UIKit.h> | |
@interface status : NSObject { | |
NSNumber* _id; | |
NSString* _unomas; | |
NSNumber* _minutes; | |
NSNumber* _hours; | |
NSNumber* _days; | |
NSString* _naam; | |
NSString* _date; |